diff options
author | Ethan Sommer <e5ten.arch@gmail.com> | 2020-04-15 15:02:05 -0400 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-07-04 16:01:01 +0300 |
commit | f64fb1eaaca419587d3599a1e72906690a38f8d4 (patch) | |
tree | 3bd915a761e2045036d216be3567a0fd1926a69b | |
parent | 92b53afd69fd0c37da07b843ea1ff2a88fa22740 (diff) | |
download | toybox-f64fb1eaaca419587d3599a1e72906690a38f8d4.tar.gz |
findglobals.sh: change shebang to sh
-rwxr-xr-x | scripts/findglobals.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/findglobals.sh b/scripts/findglobals.sh index 2c63164b..9455bc61 100755 --- a/scripts/findglobals.sh +++ b/scripts/findglobals.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Quick and dirty check to see if anybody's leaked global variables. # We should have this, toy_list, toybuf, and toys. |