From 071e1b96eae769fa8c8e8ec35a3c6936948fecf7 Mon Sep 17 00:00:00 2001 From: Yoann LE BORGNE Date: Sun, 11 Aug 2024 00:03:10 +0200 Subject: [PATCH] Updated shebang in shell scripts Following https://github.com/grame-cncm/faust/pull/1048, this commit updates two scripts. No bashisms this time but we don't use sh explicitely anymore in ./scripts/buildtools to run faust2x tools as they are meant to be used with bash as indicated by their shebang. --- scripts/buildtools | 4 ++-- scripts/make-example | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/buildtools b/scripts/buildtools index be9084dbfb..5b0f90654b 100755 --- a/scripts/buildtools +++ b/scripts/buildtools @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # #cd $1 @@ -9,7 +9,7 @@ do echo echo "## " $tool echo "
"
-	sh $tool -help | sed -e 's/\"
 	echo
 
diff --git a/scripts/make-example b/scripts/make-example
index 6745225047..3dad665f2e 100755
--- a/scripts/make-example
+++ b/scripts/make-example
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 
 GROUP=$1