Skip to content

Commit

Permalink
tools/script_manager - fixed quote with a " instead of s
Browse files Browse the repository at this point in the history
  • Loading branch information
wpferguson committed Oct 17, 2023
1 parent d55dae7 commit 13f02c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/script_manager.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 13f02c9

Please sign in to comment.