1
0
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:
Delyan Angelov
2021-08-28 16:21:46 +03:00
parent f41939f005
commit 25bf68e2f1
3 changed files with 5 additions and 5 deletions

View File

@ -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)