1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/tools/vup.v
2019-12-04 23:17:45 +03:00

22 lines
540 B
V

import os
fn main() {
println('Updating V...')
vroot := os.dir(os.args[1])
os.chdir(vroot)
s := os.exec('git -C "$vroot" pull --rebase origin master') or { panic(err) }
println(s.output)
$if windows {
v_backup_file := '$vroot/v_old.exe'
if os.exists( v_backup_file ) {
os.rm( v_backup_file )
}
os.mv_by_cp('$vroot/v.exe', v_backup_file) or { panic(err) }
s2 := os.exec('"$vroot/make.bat"') or { panic(err) }
println(s2.output)
} $else {
s2 := os.exec('make -C "$vroot"') or { panic(err) }
println(s2.output)
}
}