diff options
Diffstat (limited to 'scripts/osx/copy-to-steam.sh')
-rw-r--r-- | scripts/osx/copy-to-steam.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/osx/copy-to-steam.sh b/scripts/osx/copy-to-steam.sh new file mode 100644 index 0000000..165ee40 --- /dev/null +++ b/scripts/osx/copy-to-steam.sh @@ -0,0 +1,9 @@ +#!/bin/sh -e + +cd "`dirname \"$0\"`/../../dist" + +STEAM_INSTALL_DIR="$HOME/Library/Application Support/Steam/steamapps/common/Starbound - Unstable" + +./asset_packer -c ../scripts/packing.config ../assets/packed ./packed.pak +mv packed.pak "$STEAM_INSTALL_DIR/assets/packed.pak" +cp starbound "$STEAM_INSTALL_DIR/osx/Starbound.app/Contents/MacOS/" |