1
0
Fork 0
golang-github-rhysd-go-gith.../scripts/make-release.sh
Daniel Baumann e7ed09875d
Adding upstream version 1.2.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 09:45:13 +02:00

26 lines
472 B
Bash
Executable file

#! /bin/bash
set -e
if [ ! -d .git ]; then
echo 'Run this script from root of repository' 1>&2
exit 1
fi
executable=selfupdate-example
rm -rf release
gox -verbose ./cmd/$executable
mkdir -p release
mv selfupdate-example_* release/
cd release
for bin in *; do
if [[ "$bin" == *windows* ]]; then
command="${executable}.exe"
else
command="$executable"
fi
mv "$bin" "$command"
zip "${bin}.zip" "$command"
rm "$command"
done