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

os: make chdir() return error

This commit is contained in:
Alexander Medvednikov
2021-08-28 09:35:39 +03:00
parent e85311c2ba
commit 858ba25d55
12 changed files with 25 additions and 26 deletions

View File

@ -18,7 +18,7 @@ const (
// setup of vweb webserver
fn testsuite_begin() {
os.chdir(vroot)
os.chdir(vroot) or {}
if os.exists(serverexe) {
os.rm(serverexe) or {}
}