fix gambas3-selftest run.sh
Fix that it can be called from anywhere in the path. Before that it could only run in 'app/src/gambas3-selftest'. Now it can be called in the root dir of Gambas via 'app/src/gambas3-selftest/run.sh'.
This commit is contained in:
parent
f524a2eb9d
commit
a65600f994
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
|
||||
MYDIR=$(pwd)
|
||||
MYDIR=$(cd `dirname $0` && pwd)
|
||||
|
||||
# run Full without JIT
|
||||
gbx3 -j -T "@Full" $MYDIR
|
||||
|
|
Loading…
Reference in a new issue