summaryrefslogtreecommitdiff
path: root/config.common.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-05 03:55:22 -0500
committerJeff Carr <[email protected]>2025-10-05 03:55:22 -0500
commit952334bf58e49e381171e2c71e20a847f4138df6 (patch)
treef430252265c34d30162027c0bf657cfbfe52a841 /config.common.go
parent8d50f01597cde8c7ae0fd451347d93196b97f900 (diff)
code cleanups. old non-protobuf code almost gonev0.0.166
Diffstat (limited to 'config.common.go')
-rw-r--r--config.common.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/config.common.go b/config.common.go
index 925b2de..43cd763 100644
--- a/config.common.go
+++ b/config.common.go
@@ -27,12 +27,12 @@ func (f *Forge) IsWritable(repo *gitpb.Repo) bool {
if f.Config.IsWritable(repo.Namespace) {
return true
}
- if f.Config.IsWritable(repo.FullPath) {
- return true
- }
- if !f.Config.IsWritable(repo.GetGoPath()) {
- return true
- }
+ // if f.Config.IsWritable(repo.FullPath) {
+ // return true
+ // }
+ // if !f.Config.IsWritable(repo.GetGoPath()) {
+ // return true
+ // }
return false
}