mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
10 lines
330 B
Plaintext
10 lines
330 B
Plaintext
/proc/ext_python(var/script, var/args, var/scriptsprefix = 1, var/log_command=0)
|
|
if(scriptsprefix) script = "scripts/" + script
|
|
|
|
if(world.system_type == MS_WINDOWS)
|
|
script = replacetext(script, "/", "\\")
|
|
|
|
var/command = config.python_path + " " + script + " " + args
|
|
if(log_command)
|
|
testing(command)
|
|
return shell(command) |