11 lines
178 B
Bash
Executable file
11 lines
178 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
VERSION="$1"
|
|
|
|
for ARCH in amd64 arm64; do
|
|
mv -v \
|
|
"build/i3-wallpaper-manager-linux-${ARCH}" \
|
|
"build/i3-wallpaper-manager-${VERSION}-linux-${ARCH}"
|
|
done
|