mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: os.chdir() fixes for windows jobs
This commit is contained in:
@ -11,10 +11,10 @@ fn find_diff_cmd() string {
|
||||
return res
|
||||
}
|
||||
|
||||
fn test_vet() {
|
||||
fn test_vet() ? {
|
||||
vexe := os.getenv('VEXE')
|
||||
vroot := os.dir(vexe)
|
||||
os.chdir(vroot)
|
||||
os.chdir(vroot) ?
|
||||
test_dir := 'cmd/tools/vvet/tests'
|
||||
tests := get_tests_in_dir(test_dir)
|
||||
fails := check_path(vexe, test_dir, tests)
|
||||
|
Reference in New Issue
Block a user