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

@ -85,7 +85,10 @@ fn modfn(mname string, fname string) string {
pub fn chdir(path string) {
verbose_trace_strong(modfn(@MOD, @FN), 'cd $path')
os.chdir(path)
os.chdir(path) or {
verbose_trace(modfn(@MOD, @FN), '## failed.')
return
}
}
pub fn mkdir(path string) ? {