From 9ce0fa3daf8f8040c128a9ecc6e2282a59fbf5cc Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 23 Apr 2020 17:09:01 -0600 Subject: [PATCH] fix search for include scripts in grep expression --- tools/luals | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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