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

ci: fix for os.execvp on macos

This commit is contained in:
Delyan Angelov 2020-12-28 20:01:19 +02:00
parent ef786f9a75
commit a8b2745019
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -881,7 +881,7 @@ pub fn execvp(cmdpath string, args []string) ? {
cargs << args[i].str
}
cargs << charptr(0)
res := C.execvp(cmdpath.str, cargs.data)
res := C.execvp(charptr(cmdpath.str), cargs.data)
if res == -1 {
return error(posix_get_error_msg(C.errno))
}