v install: always build vget

pull/1562/head
Alexander Medvednikov 2019-08-10 10:14:49 +02:00
parent a0b59783a2
commit 25d97ebbe4
1 changed files with 4 additions and 4 deletions

View File

@ -133,15 +133,15 @@ fn main() {
} }
vroot := os.dir(os.executable()) vroot := os.dir(os.executable())
vget := '$vroot/tools/vget' vget := '$vroot/tools/vget'
if !os.file_exists(vget) { if true {
println('Building vget...') //println('Building vget...')
os.chdir(vroot + '/tools') os.chdir(vroot + '/tools')
vexec := os.args[0] vexec := os.args[0]
_ := os.exec('$vexec vget.v') or { _ := os.exec('$vexec vget.v') or {
panic(err) panic(err)
return // TODO remove return return // TODO remove return
} }
println('Done.') //println('Done.')
} }
println('Installing module ${mod}...') println('Installing module ${mod}...')
_ := os.exec('$vget $mod') or { _ := os.exec('$vget $mod') or {