view scripts/build_unix.sh @ 101:19d784fd3918

Remove debugging prints (descriptions now provide pretty much the same feedback anyway).
author Simon Cross <simon@simonx>
date Tue, 24 Aug 2010 09:58:12 +0200
parents 145b936824f0
children 322cbc0a8cce
line wrap: on
line source

#!/bin/bash

GAME_NAME="captured"

mkdir -p build/${GAME_NAME} dist

cp -r README.txt run_game.py gamelib Resources build/${GAME_NAME}

cd build

# Add albow to our game
unzip ../deps/Albow-2.1.0.zip > /dev/null
mv Albow-2.1.0/albow ${GAME_NAME}
rm -rf Albow-2.1.0

tar czf ../dist/${GAME_NAME}.tgz captured