summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.common.go12
-rw-r--r--human.go2
-rw-r--r--tableBuild.go (renamed from humanBuildTable.go)0
-rw-r--r--tableDefault.go6
-rw-r--r--tableForged.go (renamed from humanForgedTable.go)0
5 files changed, 11 insertions, 9 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
}
diff --git a/human.go b/human.go
index f58e23e..e5ce98d 100644
--- a/human.go
+++ b/human.go
@@ -10,6 +10,8 @@ import (
"go.wit.com/log"
)
+// OLD STUFF. REMOVE. USE PROTOBUF TABLES
+
// mostly just functions related to making STDOUT
// more readable by us humans
diff --git a/humanBuildTable.go b/tableBuild.go
index 99f08cb..99f08cb 100644
--- a/humanBuildTable.go
+++ b/tableBuild.go
diff --git a/tableDefault.go b/tableDefault.go
index 2cb8f9a..823fa98 100644
--- a/tableDefault.go
+++ b/tableDefault.go
@@ -82,11 +82,11 @@ func (f *Forge) makeDefaultTB(pb *gitpb.Repos) *gitpb.ReposTable {
})
col.Width = 3
+ col = t.AddState()
+ col.Width = 12
+
col = t.AddURL()
col.Width = 42
-
- col = t.AddState()
- col.Width = -1
return t
}
diff --git a/humanForgedTable.go b/tableForged.go
index 19d0818..19d0818 100644
--- a/humanForgedTable.go
+++ b/tableForged.go