1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: remove trim_space() in os.execute() on windows, to make implementations consistent (#13272)

This commit is contained in:
Subhomoy Haldar
2022-01-25 17:39:56 +05:30
committed by GitHub
parent a913983408
commit fe77e64b3e
2 changed files with 4 additions and 4 deletions

View File

@@ -366,7 +366,7 @@ pub fn execute(cmd string) Result {
break
}
}
soutput := read_data.str().trim_space()
soutput := read_data.str()
unsafe { read_data.free() }
exit_code := u32(0)
C.WaitForSingleObject(proc_info.h_process, C.INFINITE)