v/cmd/tools/vup.v

37 lines
543 B
V
Raw Normal View History

2019-12-23 10:22:06 +00:00
module main
2019-12-23 10:09:22 +00:00
import (
os
filepath
2020-02-20 16:41:55 +00:00
v.pref
2019-12-23 10:09:22 +00:00
)
fn main() {
println('Updating V...')
2020-02-20 16:41:55 +00:00
vroot := filepath.dir(pref.vexe_path())
os.chdir(vroot)
2020-02-20 16:41:55 +00:00
// git pull
s := os.exec('git pull --rebase origin master') or {
panic(err)
}
println(s.output)
2020-02-20 16:41:55 +00:00
$if windows {
2020-02-20 16:41:55 +00: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 16:41:55 +00:00
s2 := os.exec('make') or {
panic(err)
}
println(s2.output)
}
}