mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v up: correct an error message (#6327)
This commit is contained in:
parent
18034bb95c
commit
26971da510
@ -105,7 +105,7 @@ fn (app App) git_command(command string) {
|
||||
}
|
||||
if git_result.exit_code != 0 {
|
||||
if git_result.output.contains('Permission denied') {
|
||||
eprintln('have no access `$app.vroot`: Permission denied')
|
||||
eprintln('No access to `$app.vroot`: Permission denied')
|
||||
} else {
|
||||
eprintln(git_result.output)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user