waw-sprite-test/scons.sh

10 lines
322 B
Bash
Raw Permalink Normal View History

2021-10-08 19:54:21 +02:00
DIR="$( cd "$( dirname "$(readlink -f "$0")" )" > /dev/null && pwd )"
SHPATH="$(ls -t "$HOME/.vscode/extensions/entan-gl.cc65-vice-"*"/build.sh" | head -1)"
if test -e "$DIR/../../../build.sh"; then
sh "$DIR/../../../build.sh" scons "$@"
elif test -e "$SHPATH"; then
sh "$SHPATH" scons "$@"
else
scons "$@"
fi