v/cmd/tools/vup.v

48 lines
788 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
2020-02-20 16:41:55 +00:00
v.pref
2019-12-23 10:09:22 +00:00
)
fn main() {
2020-03-07 21:26:26 +00:00
vroot := os.dir(pref.vexe_path())
os.chdir(vroot)
println('Updating V...')
2020-02-20 16:41:55 +00:00
// git pull
git_result := os.exec('git pull --rebase origin master') or {
2020-02-20 16:41:55 +00:00
panic(err)
}
if git_result.exit_code != 0 {
if git_result.output.contains('Permission denied') {
eprintln('have no access $vroot: Permission denied')
} else {
eprintln(git_result.output)
}
exit(1)
}
println(git_result.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)
2020-03-07 21:26:26 +00:00
make_result := os.exec('make.bat') or {
2020-02-20 16:41:55 +00:00
panic(err)
}
println(make_result.output)
} $else {
make_result := os.exec('make') or {
2020-02-20 16:41:55 +00:00
panic(err)
}
println(make_result.output)
}
}