Skip to content

Commit a3fe02b

Browse files
authored
Merge pull request #482 from wpferguson/fix_non_windows_command_sanitize
fix non windows external command sanitize
2 parents cdf4b74 + ff20098 commit a3fe02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dtutils/system.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function dtutils_system.external_command(command)
5353
if dt.configuration.running_os == "windows" then
5454
result = dtutils_system.windows_command(ds.sanitize(command))
5555
else
56-
result = dt.control.execute(ds.sanitize(command))
56+
result = dt.control.execute(command)
5757
end
5858

5959
return result

0 commit comments

Comments
 (0)