summarylogtreecommitdiffstats
path: root/launcher.sh
blob: 0a45bbad99d07268ce7cc4bd18f3c26d8983cb43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# Script to change current working directory
# and execute the program from there
pushd () {
    command pushd "$@" > /dev/null
}

popd () {
    command popd "$@" > /dev/null
}

pushd /opt/craft/
./craft
popd