Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Fargher <jfargher@gitlab.com>2023-02-16 05:31:47 +0300
committerJames Fargher <jfargher@gitlab.com>2023-02-16 05:35:45 +0300
commitdf068cab55dddb55e524fa4fb1ddb81cde91672e (patch)
treeb08a1f75488f16ee894e0a99dbe2408a75f6e646 /internal/helper
parent75efe1fc84ba6f5b8d0797fbdc8fa74845a196ba (diff)
perm: Remove public executable permission
There was only a single usage of this permission and it was in tests. Since there are no real use-cases for this permission we should remove it.
Diffstat (limited to 'internal/helper')
-rw-r--r--internal/helper/perm/perm.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/helper/perm/perm.go b/internal/helper/perm/perm.go
index 869665384..e45635fcb 100644
--- a/internal/helper/perm/perm.go
+++ b/internal/helper/perm/perm.go
@@ -47,8 +47,4 @@ const (
// SharedExecutable is the permission given for an executable that may be
// executed outside of gitaly.
SharedExecutable fs.FileMode = 0o755
-
- // PublicExecutable is the permission given for an executable that may be
- // read or written outside of gitaly.
- PublicExecutable fs.FileMode = 0o777
)