diff options
| author | Jeff Carr <[email protected]> | 2025-10-05 02:26:18 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-05 02:26:18 -0500 | 
| commit | 8f71f42d4668921d85a80b2bb6a71cb5e4eee1d9 (patch) | |
| tree | 5e5839f5e47723ce17cfc9ad3288088b8c6c7218 | |
| parent | 87261a026e30c4f9d38ef92573a168b157f29755 (diff) | |
start returning functionalityv0.25.54
| -rw-r--r-- | main.go | 10 | 
1 files changed, 10 insertions, 0 deletions
@@ -8,8 +8,10 @@ package main  import (  	"embed"  	"strings" +	"time"  	"go.wit.com/lib/gui/prep" +	"go.wit.com/lib/gui/shell"  	"go.wit.com/lib/protobuf/forgepb"  	"go.wit.com/lib/protobuf/gitpb"  	"go.wit.com/log" @@ -103,7 +105,15 @@ func main() {  				log.Info("you are already in the normal state")  				okExit("")  			} +			start := time.Now() +			err := me.forge.DoAllCheckoutUser(argv.Force) +			dur := time.Since(start) +			log.Printf("Checked out %d user braches in %s\n", me.forge.Repos.Len(), shell.FormatDuration(dur)) +			if err != nil { +				me.sh.BadExit("not everything on user braches", err) +			}  			setForgeMode(forgepb.ForgeMode_NORMAL) +			okExit("")  			log.Info("normal mode on")  			okExit("")  		}  | 
