v up: correct an error message (#6327)
parent
18034bb95c
commit
26971da510
|
@ -105,7 +105,7 @@ fn (app App) git_command(command string) {
|
||||||
}
|
}
|
||||||
if git_result.exit_code != 0 {
|
if git_result.exit_code != 0 {
|
||||||
if git_result.output.contains('Permission denied') {
|
if git_result.output.contains('Permission denied') {
|
||||||
eprintln('have no access `$app.vroot`: Permission denied')
|
eprintln('No access to `$app.vroot`: Permission denied')
|
||||||
} else {
|
} else {
|
||||||
eprintln(git_result.output)
|
eprintln(git_result.output)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue