Bump version to 1.6.2

This commit is contained in:
Ryan Ward
2026-06-04 16:07:24 -05:00
parent 840bc4d244
commit 4ba9706e35
12 changed files with 54 additions and 61 deletions
Executable
+28
View File
@@ -0,0 +1,28 @@
#!/bin/bash
set -e
cd "$(dirname "$0")"
PROFILE="debug"
if [ "$1" = "--release" ]; then
PROFILE="release"
CARGO_FLAGS="--release"
fi
APP_PATH="target/${PROFILE}/bundle/osx/Galaxy.app"
INSTALL_PATH="/Applications/Galaxy.app"
echo "=== Building Galaxy (${PROFILE}) ==="
cargo bundle ${CARGO_FLAGS} --bin galaxy-oss --package galaxy
if [ ! -d "$APP_PATH" ]; then
echo "Error: Bundle not found at ${APP_PATH}"
exit 1
fi
echo "=== Installing to /Applications ==="
if [ -d "$INSTALL_PATH" ]; then
rm -rf "$INSTALL_PATH"
fi
cp -R "$APP_PATH" "$INSTALL_PATH"
echo "=== Installed Galaxy.app to /Applications ==="