Build script: only create release archives

This commit is contained in:
2026-06-01 02:39:06 +02:00
parent df7c9334c3
commit 00bb121a4b
-10
View File
@@ -32,16 +32,6 @@ if [ "$WINDOWS_SKIP" -eq 0 ]; then
cargo build --release --target x86_64-pc-windows-gnu
fi
echo ""
echo "=== Copying binaries ==="
cp target/release/notalterra notalterra-linux
echo " notalterra-linux ($(du -h notalterra-linux | cut -f1))"
if [ "$WINDOWS_SKIP" -eq 0 ]; then
cp target/x86_64-pc-windows-gnu/release/notalterra.exe notalterra-windows.exe
echo " notalterra-windows.exe ($(du -h notalterra-windows.exe | cut -f1))"
fi
echo ""
echo "=== Packaging release archives ==="
LINUX_ARCHIVE="notalterra-v${VERSION}-linux-amd64.tar.gz"