Oh GACK! src-clean doesn't quite work that easily since cleandist rebuilds the
[unix-history] / games / hack / hack.sh
CommitLineData
15637ed4
RG
1#!/bin/sh
2HACKDIR=/usr/games/lib/hackdir
3HACK=$HACKDIR/hack
4MAXNROFPLAYERS=4
5
6cd $HACKDIR
7case $1 in
8 -s*)
9 exec $HACK $@
10 ;;
11 *)
12 exec $HACK $@ $MAXNROFPLAYERS
13 ;;
14esac