1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix the vget test

This commit is contained in:
Alexander Medvednikov 2019-09-28 14:58:24 +03:00
parent dc28c787d1
commit 0bfb88e2e6

View File

@ -1024,7 +1024,8 @@ fn install_v(args[]string) {
}
fn (v &V) test_vget() {
ret := os.system('v install nedpals.args')
vexe := os.executable()
ret := os.system('$vexe install nedpals.args')
if ret != 0 {
println('failed to run v install')
exit(1)