vself, vup: update to use err.msg instead of err

pull/9343/head
Delyan Angelov 2021-03-16 21:02:52 +02:00
parent 1753445a64
commit 6814c975e5
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
2 changed files with 7 additions and 7 deletions

View File

@ -27,7 +27,7 @@ fn main() {
// The user just wants an independent copy of v, and so we are done. // The user just wants an independent copy of v, and so we are done.
return return
} }
backup_old_version_and_rename_newer() or { panic(err) } backup_old_version_and_rename_newer() or { panic(err.msg) }
println('V built successfully!') println('V built successfully!')
} }
@ -67,16 +67,16 @@ fn backup_old_version_and_rename_newer() ?bool {
bak_file := os.real_path(short_bak_file) bak_file := os.real_path(short_bak_file)
list_folder('before:', 'removing $bak_file ...') list_folder('before:', 'removing $bak_file ...')
os.rm(bak_file) or { errors << 'failed removing $bak_file: $err' } os.rm(bak_file) or { errors << 'failed removing $bak_file: $err.msg' }
list_folder('', 'moving $v_file to $bak_file ...') list_folder('', 'moving $v_file to $bak_file ...')
os.mv(v_file, bak_file) or { errors << err } os.mv(v_file, bak_file) or { errors << err.msg }
list_folder('', 'removing $v_file ...') list_folder('', 'removing $v_file ...')
os.rm(v_file) or { } os.rm(v_file) or {}
list_folder('', 'moving $v2_file to $v_file ...') list_folder('', 'moving $v2_file to $v_file ...')
os.mv_by_cp(v2_file, v_file) or { panic(err) } os.mv_by_cp(v2_file, v_file) or { panic(err.msg) }
list_folder('after:', '') list_folder('after:', '')

View File

@ -124,9 +124,9 @@ fn (app App) show_current_v_version() {
fn (app App) backup(file string) { fn (app App) backup(file string) {
backup_file := '${file}_old.exe' backup_file := '${file}_old.exe'
if os.exists(backup_file) { if os.exists(backup_file) {
os.rm(backup_file) or { eprintln('failed removing $backup_file: $err') } os.rm(backup_file) or { eprintln('failed removing $backup_file: $err.msg') }
} }
os.mv(file, backup_file) or { eprintln('failed moving $file: $err') } os.mv(file, backup_file) or { eprintln('failed moving $file: $err.msg') }
} }
fn (app App) git_command(command string) { fn (app App) git_command(command string) {