v up: correct an error message (#6327)

pull/6358/head
Cezary Drożak 2020-09-08 00:41:47 +02:00 committed by GitHub
parent 18034bb95c
commit 26971da510
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)
} }