tools: capitalize information output of v up (#21464)

This commit is contained in:
Andreas Evensen 2024-05-08 08:40:51 +02:00 committed by GitHub
parent 279405a36e
commit caf67ed952
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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`...')
@ -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
}