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

37 lines
543 B
V
Raw Normal View History

2019-12-23 13:22:06 +03:00
module main
2019-12-23 13:09:22 +03:00
import (
os
filepath
2020-02-20 19:41:55 +03:00
v.pref
2019-12-23 13:09:22 +03:00
)
fn main() {
println('Updating V...')
2020-02-20 19:41:55 +03:00
vroot := filepath.dir(pref.vexe_path())
os.chdir(vroot)
2020-02-20 19:41:55 +03:00
// git pull
s := os.exec('git pull --rebase origin master') or {
panic(err)
}
println(s.output)
2020-02-20 19:41:55 +03:00
$if windows {
2020-02-20 19:41:55 +03:00
v_backup_file := 'v_old.exe'
if os.exists(v_backup_file) {
os.rm(v_backup_file)
}
os.mv('v.exe', v_backup_file)
s2 := os.exec('make.bat') or {
panic(err)
}
println(s2.output)
} $else {
2020-02-20 19:41:55 +03:00
s2 := os.exec('make') or {
panic(err)
}
println(s2.output)
}
}