We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96471ae commit 67538a4Copy full SHA for 67538a4
lib/dtutils/system.lua
@@ -148,7 +148,7 @@ dtutils_system.libdoc.functions["os_execute"] = {
148
}
149
150
function dtutils_system.os_execute(cmd)
151
- if _scripts_install.dt.configuration.running_os == "windows" then
+ if dt.configuration.running_os == "windows" then
152
cmd = "\"" .. cmd .. "\""
153
end
154
return os.execute(cmd)
@@ -173,7 +173,7 @@ dtutils_system.libdoc.functions["io_popen"] = {
173
174
175
function dtutils_system.io_popen(cmd)
176
177
178
179
return io.popen(cmd)
0 commit comments