From 26971da5108eac87e4c6a2775c2008df54910754 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cezary=20Dro=C5=BCak?= Date: Tue, 8 Sep 2020 00:41:47 +0200 Subject: [PATCH] v up: correct an error message (#6327) --- cmd/tools/vup.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/vup.v b/cmd/tools/vup.v index 58c2d6610e..5b31704540 100644 --- a/cmd/tools/vup.v +++ b/cmd/tools/vup.v @@ -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) }