Skip to content

Commit

Permalink
Updated shebang in shell scripts
Browse files Browse the repository at this point in the history
Following grame-cncm/faust#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.
  • Loading branch information
Yoann-Le-Borgne authored and sletz committed Aug 11, 2024
1 parent e0b0a4b commit 071e1b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/buildtools
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#

#cd $1
Expand All @@ -9,7 +9,7 @@ do
echo
echo "## " $tool
echo "<pre class=faust-tools>"
sh $tool -help | sed -e 's/\</\&lt;/g'
$tool -help | sed -e 's/\</\&lt;/g'
echo "</pre>"
echo

Expand Down
2 changes: 1 addition & 1 deletion scripts/make-example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash


GROUP=$1
Expand Down

0 comments on commit 071e1b9

Please sign in to comment.