We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1314a8 commit e646bd6Copy full SHA for e646bd6
vlib/v/pref/vsh_envbang_test.v
@@ -21,8 +21,7 @@ println('hello')
21
println(os.args)
22
")!
23
os.chmod(rnd_vsh_script_path, 0o700)!
24
- cmd := '${os.quoted_path(rnd_vsh_script_path)} abc 123 -option'
25
- res := os.execute(cmd)
+ res := os.execute('${os.quoted_path(rnd_vsh_script_path)} abc 123 -option')
26
assert res.exit_code == 0
27
lines := res.output.split_into_lines()
28
assert lines[0] == 'hello'
0 commit comments