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
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
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) ? {