Mercurial > hg > beaglert
annotate scripts/connect_to_project.sh @ 499:a15a116f6904 prerelease
Took some of the verbosity out of the Doxyfile
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Wed, 22 Jun 2016 00:04:04 +0100 |
parents | d9a4fc5357e7 |
children |
rev | line source |
---|---|
giuliomoro@425 | 1 #!/bin/sh |
andrewm@61 | 2 # |
giuliomoro@377 | 3 # This script brings an already running Bela program to the foreground |
andrewm@61 | 4 # in the terminal, so it can be run interactively. |
andrewm@61 | 5 |
giuliomoro@462 | 6 SCRIPTDIR=$(dirname "$0") |
giuliomoro@462 | 7 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ |
giuliomoro@462 | 8 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; } |
andrewm@61 | 9 |
giuliomoro@418 | 10 ssh -t $BBB_ADDRESS "make -C "$BBB_BELA_HOME" connect" |