mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
fix search for include scripts in grep expression
This commit is contained in:
parent
847eb93784
commit
9ce0fa3daf
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue