diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2021-03-16 19:32:20 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2021-03-16 19:32:38 -0300 |
commit | 1db99934fc304f46b94983a5ad118cbb0cea2a72 (patch) | |
tree | f49d3f962d236c594705e7420a1cdf6073fa1d95 | |
parent | 4bc532627dc59265abaf4d30e9c5c04d71fe7a6f (diff) | |
download | luarocks-1db99934fc304f46b94983a5ad118cbb0cea2a72.tar.gz luarocks-1db99934fc304f46b94983a5ad118cbb0cea2a72.tar.bz2 luarocks-1db99934fc304f46b94983a5ad118cbb0cea2a72.zip |
configure: make shellcheck happy
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -437,7 +437,7 @@ check_incdir() { | |||
437 | do | 437 | do |
438 | if [ -f "$lua_h" ] | 438 | if [ -f "$lua_h" ] |
439 | then | 439 | then |
440 | grep "LUA_VERSION_NUM.*$LUA_VERSION" $lua_h &> /dev/null && return | 440 | grep "LUA_VERSION_NUM.*$LUA_VERSION" "$lua_h" > /dev/null 2> /dev/null && return |
441 | fi | 441 | fi |
442 | tried="$tried $lua_h" | 442 | tried="$tried $lua_h" |
443 | done | 443 | done |