i3-wallpaper-manager/bin/rename-builds.sh
Simon Vieille 87e76093a5
Some checks failed
ci/woodpecker/push/test Pipeline failed
ci/woodpecker/push/build unknown status
add CI files
add makefile

add fpm conf
2024-07-30 21:34:05 +02:00

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