ci: fix `os` compilation on windows

pull/8357/head
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
1 changed files with 1 additions and 1 deletions

View File

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