diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-06-23 01:20:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-23 01:20:01 -0700 |
commit | 65e3ac41324adfaf5f761d4d543f29588d108adf (patch) | |
tree | ed6af6bba13b1ae01876c1e86393afcdc5e0f540 /bin/sbang | |
parent | 86893e3dc4a82588e18c8832c4a8811fb5e83273 (diff) | |
parent | 27e9bc6d028e3ee8b4890c226594e25bcfc370eb (diff) | |
download | spack-65e3ac41324adfaf5f761d4d543f29588d108adf.tar.gz spack-65e3ac41324adfaf5f761d4d543f29588d108adf.tar.bz2 spack-65e3ac41324adfaf5f761d4d543f29588d108adf.tar.xz spack-65e3ac41324adfaf5f761d4d543f29588d108adf.zip |
Merge pull request #1102 from LLNL/bugfix/sbang-lua-fix
Make sbang handle lua
Diffstat (limited to 'bin/sbang')
-rwxr-xr-x | bin/sbang | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -79,6 +79,15 @@ # Obviously, for this to work, `sbang` needs to have a short enough # path that *it* will run without hitting OS limits. # +# For Lua, scripts the second line can't start with #!, as # is not +# the comment character in lua (even though lua ignores #! on the +# *first* line of a script). So, instrument a lua script like this, +# using -- instead of # on the second line: +# +# 1 #!/bin/bash /path/to/sbang +# 2 --!/long/path/to/lua with arguments +# 3 +# 4 print "success!" # # How it works # ----------------------------- @@ -95,6 +104,8 @@ lines=0 while read line && ((lines < 2)) ; do if [[ "$line" = '#!'* ]]; then interpreter="${line#\#!}" + elif [[ "$line" = '--!'*lua* ]]; then + interpreter="${line#--!}" fi lines=$((lines+1)) done < "$script" |