File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ fn (app App) recompile_v() bool {
91
91
self_result := os.execute (vself)
92
92
if self_result.exit_code == 0 {
93
93
println (self_result.output.trim_space ())
94
- println ('> done recompiling.' )
94
+ println ('> Done recompiling.' )
95
95
return true
96
96
} else {
97
97
println ('> `${vself} ` failed, running `make`...' )
@@ -101,10 +101,10 @@ fn (app App) recompile_v() bool {
101
101
}
102
102
103
103
fn (app App) recompile_vup () bool {
104
- eprintln ('> recompiling vup.v ...' )
104
+ eprintln ('> Recompiling vup.v ...' )
105
105
vup_result := os.execute ('${os.quoted_path(app.vexe)} -g cmd/tools/vup.v' )
106
106
if vup_result.exit_code != 0 {
107
- eprintln ('> failed recompiling vup.v .' )
107
+ eprintln ('> Failed recompiling vup.v .' )
108
108
eprintln (vup_result.output)
109
109
return false
110
110
}
You can’t perform that action at this time.
0 commit comments