summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-28 14:54:14 -0500
committerJeff Carr <[email protected]>2025-10-28 14:54:14 -0500
commitb9b425d5a329827b480f10c21eb8131e9ac12bb6 (patch)
treeba3dbf56d50a05f8e1a3e58595e94b56e460136c
parent29e9ff750be077804284bd939deea29942379c8b (diff)
need to sort this out eventually
-rw-r--r--doCommit.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/doCommit.go b/doCommit.go
index e54a805..43516bf 100644
--- a/doCommit.go
+++ b/doCommit.go
@@ -7,12 +7,13 @@ import (
"errors"
"go.wit.com/lib/config"
+ "go.wit.com/lib/env"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
)
func doCommit() (string, error) {
- if argv.Commit.All || argv.All {
+ if argv.Commit.All || argv.All || env.True("--all") { // fix this eventually
found := me.forge.CheckDirty()
var newpatches bool
for repo := range found.IterAll() {