From 0bfb88e2e66f4d655cc72366313c53d87fd56943 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 28 Sep 2019 14:58:24 +0300 Subject: [PATCH] fix the vget test --- compiler/main.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/main.v b/compiler/main.v index 58340c1449..c002318ff4 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -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)