commit 42a285e2ca79f0deefcf9e35135b87cf86003e3b from: Stefan Sperling date: Thu Oct 01 20:52:12 2020 UTC unveil repositories read-write when adding tags with 'got tag' commit - e5a14fe3f9e59a98ad7f7fd0987bd913d404f7e6 commit + 42a285e2ca79f0deefcf9e35135b87cf86003e3b blob - 7b77c62ca03d78d5a88d8053e2281321de9c2b84 blob + 6535a4bdb0b33f77b5e762d754afffbf8ae5d25e --- got/got.c +++ got/got.c @@ -6156,7 +6156,7 @@ cmd_tag(int argc, char *argv[]) goto done; if (tagmsg) { - error = apply_unveil(got_repo_get_path(repo), 1, NULL); + error = apply_unveil(got_repo_get_path(repo), 0, NULL); if (error) goto done; }