diff scripts/run_pd_libpd.sh @ 462:d9a4fc5357e7 prerelease

Path-relativeness of scripts has been improved. At least update_board will work when double clicked
author Giulio Moro <giuliomoro@yahoo.it>
date Mon, 20 Jun 2016 14:09:43 +0100
parents e49ae69acbe8
children
line wrap: on
line diff
--- a/scripts/run_pd_libpd.sh	Mon Jun 20 13:49:48 2016 +0100
+++ b/scripts/run_pd_libpd.sh	Mon Jun 20 14:09:43 2016 +0100
@@ -4,9 +4,10 @@
 # optionally runs it. Pass a directory path in the first argument. 
 # The source files in this directory are copied to the board and compiled.
 
-BBB_ADDRESS="root@192.168.7.2"
-BBB_LIBPD_EXECUTABLE_PATH="~/libpd/Bela"
-BBB_LIBPD_PROJECT_PATH="~/libpd/source/"
+SCRIPTDIR=$(dirname "$0")
+[ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ 
+. $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; }  
+
 RUN_PROJECT=1
 COMMAND_ARGS=
 RUN_IN_FOREGROUND=0