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

ci: fix os compilation on windows

This commit is contained in:
Delyan Angelov 2021-01-26 17:41:27 +02:00
parent e5a84719ca
commit 4e2b908f21
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -383,7 +383,7 @@ pub fn is_writable_folder(folder string) ?bool {
return error('cannot write to folder $folder: $err')
}
f.close()
rm(tmp_perm_check)
rm(tmp_perm_check) ?
return true
}