comparison scripts/update_board @ 439:e49ae69acbe8 prerelease

Rebuilt run_pd_libpd.sh. Minor fixes, adjusted verbosity
author Giulio Moro <giuliomoro@yahoo.it>
date Sat, 18 Jun 2016 04:19:17 +0100
parents 2e058007c6bc
children b596c72f0382
comparison
equal deleted inserted replaced
438:ad3f61134bb4 439:e49ae69acbe8
96 if [ $ALWAYS_YES -eq 1 ]; 96 if [ $ALWAYS_YES -eq 1 ];
97 then 97 then
98 printf "y\n" 98 printf "y\n"
99 else 99 else
100 read REPLY; 100 read REPLY;
101 [ -z $REPLY ] || { [ $REPLY != y ] && [ $REPLY != Y ]; } && { echo "Aborting..."; exit 1; } 101 [ -z "$REPLY" ] || { [ "$REPLY" != y ] && [ "$REPLY" != Y ]; } && { echo "Aborting..."; exit 1; }
102 fi 102 fi
103 else 103 else
104 echo "Installing Bela core code in $BBB_ADDRESS:$BBB_BELA_HOME" 104 echo "Installing Bela core code in $BBB_ADDRESS:$BBB_BELA_HOME"
105 fi 105 fi
106 106