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

all: more chdir/chmod fixes

This commit is contained in:
Alexander Medvednikov
2021-08-28 12:51:37 +03:00
parent 2b92ccecb5
commit cf4081e2dd
12 changed files with 14 additions and 14 deletions

View File

@ -12,7 +12,7 @@ fn test_syscallwrappers() {
dot_checks := vdir + '/.checks'
assert os.is_dir(dot_checks)
os.chdir(dot_checks)
os.chdir(dot_checks) or {}
checks_v := 'checks.v'
assert os.exists(checks_v)
rc := os.execute_or_exit('v run $checks_v')