summarylogtreecommitdiffstats
path: root/launcher.sh
blob: 0a2f5661dcaca8d916b83d34a5260c3664fb5b74 (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-git/
./craft
popd