diff options
Diffstat (limited to 'development/qb64pe/qb64pe-launcher')
-rwxr-xr-x[-rw-r--r--] | development/qb64pe/qb64pe-launcher | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/development/qb64pe/qb64pe-launcher b/development/qb64pe/qb64pe-launcher index 059b19354c326..069b56894079f 100644..100755 --- a/development/qb64pe/qb64pe-launcher +++ b/development/qb64pe/qb64pe-launcher @@ -1,13 +1,14 @@ #!/bin/sh -DEST="$HOME/.config/qb64pe-3.8.0" +VERSION=3.9.0 +DEST="$HOME/.config/qb64pe-$VERSION" if [ ! -d $DEST ] then notify-send "Setting up $DEST workspace for first run, please be patient..." CWD=`pwd` mkdir -p $DEST cd $DEST - tar xvfz /usr/src/qb64pe-3.8.0/QB64pe-3.8.0.tar.gz --strip-components=1 + tar xvfz /usr/src/qb64pe-$VERSION/QB64pe-$VERSION.tar.gz --strip-components=1 make clean OS=lnx make OS=lnx BUILD_QB64=y -j1 rm -rf run_qb64pe.sh |