blob: 165ee40e8476a7b079c00f91be373003d2452744 (
plain)
1
2
3
4
5
6
7
8
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/"
|