v up: on windows delete existing v_old.exe before renaming the new v.exe to it
parent
2eeb4c6153
commit
1d7b9a3b0b
|
@ -893,7 +893,11 @@ fn update_v() {
|
||||||
}
|
}
|
||||||
println(s.output)
|
println(s.output)
|
||||||
$if windows {
|
$if windows {
|
||||||
os.mv('$vroot/v.exe', '$vroot/v_old.exe')
|
v_backup_file := '$vroot/v_old.exe'
|
||||||
|
if os.file_exists( v_backup_file ) {
|
||||||
|
os.rm( v_backup_file )
|
||||||
|
}
|
||||||
|
os.mv('$vroot/v.exe', v_backup_file)
|
||||||
s2 := os.exec('$vroot/make.bat') or {
|
s2 := os.exec('$vroot/make.bat') or {
|
||||||
cerror(err)
|
cerror(err)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue