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

ci: fix v build-examples and v build-tools

This commit is contained in:
Delyan Angelov
2021-08-28 12:44:03 +03:00
parent 8a49a06201
commit 2b92ccecb5
12 changed files with 21 additions and 18 deletions

View File

@@ -45,7 +45,7 @@ fn test_v_init() ? {
defer {
os.rmdir_all(dir) or {}
}
os.chdir(dir)
os.chdir(dir) ?
init_and_check() ?
}
@@ -57,7 +57,7 @@ fn test_v_init_in_git_dir() ? {
defer {
os.rmdir_all(dir) or {}
}
os.chdir(dir)
os.chdir(dir) ?
os.execute_or_exit('git init .')
init_and_check() ?
}
@@ -70,7 +70,7 @@ fn test_v_init_no_overwrite_gitignore() ? {
defer {
os.rmdir_all(dir) or {}
}
os.chdir(dir)
os.chdir(dir) ?
vexe := @VEXE
os.execute_or_exit('$vexe init')