Release build script: rename binaries to notalterra-linux / notalterra-windows.exe

This commit is contained in:
2026-05-31 18:44:34 +02:00
parent d42ca53e16
commit 9c3aa7c209
2 changed files with 11 additions and 2 deletions
+2
View File
@@ -4,3 +4,5 @@
*.log
config.ini
.deepseek
notalterra-linux
notalterra-windows.exe
+9 -2
View File
@@ -34,9 +34,16 @@ if [ "$WINDOWS_SKIP" -eq 0 ]; then
fi
echo ""
echo "=== Build complete ==="
echo "=== Copying release binaries ==="
cp target/release/notalterra "notalterra-linux"
echo " notalterra-linux"
if [ "$WINDOWS_SKIP" -eq 0 ]; then
cp target/x86_64-pc-windows-gnu/release/notalterra.exe "notalterra-windows.exe"
echo " notalterra-windows.exe"
fi
echo ""
ls -lh target/release/notalterra
echo "=== Build complete ==="
ls -lh notalterra-linux
if [ "$WINDOWS_SKIP" -eq 0 ]; then
ls -lh target/x86_64-pc-windows-gnu/release/notalterra.exe
fi