8 lines
129 B
Bash
Executable File
8 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
DIR="$( cd -P "$( dirname "$0" )" && pwd )"
|
|
ROOT=${DIR}/../../
|
|
pushd ${ROOT}
|
|
./quakespasm-sdl2 -map zombietest
|
|
|
|
popd
|