From 13f02c95ea9fc9746550a62e10f17db6353fa7df Mon Sep 17 00:00:00 2001 From: Bill Ferguson Date: Tue, 17 Oct 2023 16:02:27 -0400 Subject: [PATCH] tools/script_manager - fixed quote with a " instead of s --- tools/script_manager.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/script_manager.lua b/tools/script_manager.lua index 0517cb02..e65cd204 100644 --- a/tools/script_manager.lua +++ b/tools/script_manager.lua @@ -513,7 +513,7 @@ local function scan_scripts(script_dir) local script_count = 0 local find_cmd = "find -L " .. script_dir .. " -name \\*.lua -print | sort" if dt.configuration.running_os == "windows" then - find_cmd = "dir /b/s \s" .. script_dir .. "\\*.lua\" | sort" + find_cmd = "dir /b/s \"" .. script_dir .. "\\*.lua\" | sort" end log.msg(log.debug, _("find command is ") .. find_cmd) -- scan the scripts