mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
ci: fix v build-examples
and v build-tools
This commit is contained in:
parent
8a49a06201
commit
2b92ccecb5
12 changed files with 21 additions and 18 deletions
|
@ -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) ? {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue