Skip to content

Commit

Permalink
tools: capitalize information output of v up (#21464)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesombady committed May 8, 2024
1 parent 279405a commit caf67ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/tools/vup.v
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ fn (app App) recompile_v() bool {
self_result := os.execute(vself)
if self_result.exit_code == 0 {
println(self_result.output.trim_space())
println('> done recompiling.')
println('> Done recompiling.')
return true
} else {
println('> `${vself}` failed, running `make`...')
Expand All @@ -101,10 +101,10 @@ fn (app App) recompile_v() bool {
}

fn (app App) recompile_vup() bool {
eprintln('> recompiling vup.v ...')
eprintln('> Recompiling vup.v ...')
vup_result := os.execute('${os.quoted_path(app.vexe)} -g cmd/tools/vup.v')
if vup_result.exit_code != 0 {
eprintln('> failed recompiling vup.v .')
eprintln('> Failed recompiling vup.v .')
eprintln(vup_result.output)
return false
}
Expand Down

0 comments on commit caf67ed

Please sign in to comment.