2019-12-23 11:22:06 +01:00
|
|
|
|
module main
|
|
|
|
|
|
2020-04-26 08:32:05 +02:00
|
|
|
|
import os
|
|
|
|
|
import v.pref
|
|
|
|
|
import v.util
|
2019-11-01 11:14:59 +01:00
|
|
|
|
|
|
|
|
|
fn main() {
|
2020-03-07 22:26:26 +01:00
|
|
|
|
vroot := os.dir(pref.vexe_path())
|
2019-11-01 11:14:59 +01:00
|
|
|
|
os.chdir(vroot)
|
2020-04-07 16:56:33 +02:00
|
|
|
|
|
|
|
|
|
println('Updating V...')
|
|
|
|
|
|
2020-02-20 17:41:55 +01:00
|
|
|
|
// git pull
|
2020-04-07 16:56:33 +02:00
|
|
|
|
git_result := os.exec('git pull --rebase origin master') or {
|
2020-02-20 17:41:55 +01:00
|
|
|
|
panic(err)
|
|
|
|
|
}
|
2020-04-07 16:56:33 +02:00
|
|
|
|
|
|
|
|
|
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-04-14 03:32:32 +02:00
|
|
|
|
v_hash := util.githash(false)
|
|
|
|
|
current_hash := util.githash(true)
|
|
|
|
|
// println(v_hash)
|
|
|
|
|
// println(current_hash)
|
|
|
|
|
if v_hash == current_hash {
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-02-20 17:41:55 +01:00
|
|
|
|
|
2019-11-01 11:14:59 +01:00
|
|
|
|
$if windows {
|
2020-04-22 19:54:39 +02:00
|
|
|
|
backup('v.exe')
|
2020-03-07 22:26:26 +01:00
|
|
|
|
|
2020-04-07 16:56:33 +02:00
|
|
|
|
make_result := os.exec('make.bat') or {
|
2020-02-20 17:41:55 +01:00
|
|
|
|
panic(err)
|
2019-11-01 11:14:59 +01:00
|
|
|
|
}
|
2020-04-07 16:56:33 +02:00
|
|
|
|
println(make_result.output)
|
2020-04-22 19:54:39 +02:00
|
|
|
|
|
|
|
|
|
backup('cmd/tools/vup.exe')
|
2019-11-01 11:14:59 +01:00
|
|
|
|
} $else {
|
2020-04-07 16:56:33 +02:00
|
|
|
|
make_result := os.exec('make') or {
|
2020-02-20 17:41:55 +01:00
|
|
|
|
panic(err)
|
|
|
|
|
}
|
2020-04-07 16:56:33 +02:00
|
|
|
|
println(make_result.output)
|
2019-11-01 11:14:59 +01:00
|
|
|
|
}
|
2020-04-22 19:54:39 +02:00
|
|
|
|
|
2020-04-23 12:06:46 +02:00
|
|
|
|
_ := os.exec('v cmd/tools/vup.v') or {
|
2020-04-22 19:54:39 +02:00
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn backup(file string) {
|
|
|
|
|
backup_file := '${file}_old.exe'
|
|
|
|
|
if os.exists(backup_file) {
|
|
|
|
|
os.rm(backup_file)
|
|
|
|
|
}
|
|
|
|
|
os.mv(file, backup_file)
|
2019-11-01 11:14:59 +01:00
|
|
|
|
}
|