summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-04-23 17:09:01 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-04-24 07:23:44 -0600
commit9ce0fa3daf8f8040c128a9ecc6e2282a59fbf5cc (patch)
tree9ce72f4c13affc6de39f05ab7c8e874221526961 /tools
parent847eb9378497360f611b74e5229a0d56b5a2405b (diff)
fix search for include scripts in grep expression
Diffstat (limited to 'tools')
-rwxr-xr-xtools/luals2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/luals b/tools/luals
index e55465733a..0da41d208b 100755
--- a/tools/luals
+++ b/tools/luals
@@ -2,7 +2,7 @@
function scripts (path)
local out = io.popen (
- string.format ("find '%s' -maxdepth 1 -type f -iname \"[^_]*.lua\" | grep -ve s_", path)
+ string.format ("find '%s' -maxdepth 1 -type f -iname \"[^_]*.lua\" | grep -ve /s_", path)
)
return function()
for file in out:lines() do