Skip to content

Commit

Permalink
Fix macOS install script
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnovak committed Jul 7, 2024
1 parent 9bec568 commit f37eac3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/install-mac.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/usr/bin/env bash

ROOT=$(git rev-parse --show-toplevel)

VERSION=$($ROOT/scripts/get-version.sh version)

ZIP_FILE=gridmonger-v$VERSION-macos.zip

cd dist/macos && \
unzip -q gridmonger-*.zip && \
unzip -q $ZIP_FILE && \
rm -rf /Applications/Gridmonger.app && \
mv Gridmonger.app /Applications

0 comments on commit f37eac3

Please sign in to comment.