From 86930873ac312c11c0bba54928c3eefe742604a1 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 23 Jan 2022 00:22:34 +0200 Subject: [PATCH] ci: fix vsh_envbang_test.v --- vlib/v/tests/vsh_envbang_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/tests/vsh_envbang_test.v b/vlib/v/tests/vsh_envbang_test.v index 3c6b489e4f..fcc71b0af0 100644 --- a/vlib/v/tests/vsh_envbang_test.v +++ b/vlib/v/tests/vsh_envbang_test.v @@ -21,7 +21,7 @@ println('hello') println(os.args) ") ? os.chmod(rnd_vsh_script_path, 0o700) ? - res := os.execute('"$rnd_vsh_script_path" abc 123 -option') + res := os.execute('${os.quoted_path(rnd_vsh_script_path)} abc 123 -option') assert res.exit_code == 0 lines := res.output.split_into_lines() assert lines[0] == 'hello'