Commit 59544d4d62418ca3f426fef828512551bf702e96

Stefan Sperling 2019-05-15T07:12:03

fix wording in error message

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index 5576a94..17b7013 100644
--- a/got/got.c
+++ b/got/got.c
@@ -238,7 +238,7 @@ apply_unveil(const char *repo_path, int repo_read_only,
 				err = NULL;
 			} else {
 				snprintf(err_msg, sizeof(err_msg),
-				    "%s: directory exists but is not empty",
+				    "%s: directory exists and is not empty",
 				    worktree_path);
 				err = got_error_msg(GOT_ERR_BAD_PATH,
 				    err_msg);