Skip to content

Commit

Permalink
Merge pull request darktable-org#433 from wpferguson/script_manager_q…
Browse files Browse the repository at this point in the history
…uote_fix

tools/script_manager - fixed quote
  • Loading branch information
wpferguson authored Oct 17, 2023
2 parents d55dae7 + 13f02c9 commit 867c49b
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 867c49b

Please sign in to comment.