Skip to content
Permalink
6eba5df187
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 19 lines (16 sloc) 405 Bytes
ROOT=`pwd`
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd ${DIR}
#build frotz
git submodule update --init frotz
cd frotz
make dumb
cd ..
#download zork
if [[ ! -e zork ]]; then
mkdir zork
cd zork
wget --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0" http://www.infocom-if.org/downloads/zork1.zip
unzip zork1.zip
fi
cd ${ROOT}