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