vup: minor change to final output string (#6948)

pull/6954/head
JalonSolov 2020-11-25 14:41:03 -05:00 committed by GitHub
parent 8e2b7fe3d6
commit 96b6a03d01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ fn (app App) show_current_v_version() {
latest_v_commit := vversion.split(' ').last().all_after('.')
if latest_v_commit_time := os.exec('git show -s --format=%ci $latest_v_commit') {
if latest_v_commit_time.exit_code == 0 {
vversion += ', commited at ' + latest_v_commit_time.output.trim_space()
vversion += ', timestamp: ' + latest_v_commit_time.output.trim_space()
}
}
}