mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-11 02:19:30 +00:00
[subprocess] remove p as PATH is not needed to find executable
This commit is contained in:
@@ -187,7 +187,7 @@ extern char **environ;
|
||||
|
||||
int run_subprocess(const char *name, const char **args) {
|
||||
#if defined(GB_SYSTEM_WINDOWS)
|
||||
return (int)_spawnvp(_P_WAIT, name, args);
|
||||
return (int)_spawnv(_P_WAIT, name, args);
|
||||
#else
|
||||
pid_t pid;
|
||||
int status;
|
||||
|
||||
Reference in New Issue
Block a user