summaryrefslogtreecommitdiff
path: root/doCheckout.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-09 14:34:57 -0600
committerJeff Carr <[email protected]>2025-02-09 14:34:57 -0600
commit0ed94d57e8fe3b1af2eb6f266c72c9270c974852 (patch)
treea2868643c8d121d4fa0441e27c77c4c80174b182 /doCheckout.go
parentf72756b089dca933f4345092b9e25dd11d4fa7ac (diff)
quiet output
Diffstat (limited to 'doCheckout.go')
-rw-r--r--doCheckout.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/doCheckout.go b/doCheckout.go
index c9d1a45..06c36cf 100644
--- a/doCheckout.go
+++ b/doCheckout.go
@@ -256,7 +256,7 @@ func doCheckoutShared() error {
if me.argvCheckoutUser {
log.Info("Starting git checkout user")
if argv.Force {
- // make the user directories
+ log.Info("going to force create user branches")
if err := makeUserBranches(); err != nil {
return err
}
@@ -270,10 +270,7 @@ func doCheckoutShared() error {
log.Info("Starting git checkout devel")
if argv.Force {
log.Info("going to force create devel branches")
- // make the devel directories
- if err := makeDevelBranches(); err != nil {
- return err
- }
+ makeDevelBranches()
}
// this uses rill and is super fast
doAllCheckoutDevel()
@@ -316,7 +313,6 @@ func makeDevelBranches() error {
for all.Scan() {
repo := all.Next()
branch := repo.GetDevelBranchName()
- log.Info("going to force create devel branches", repo.GetGoPath())
if repo.Exists(filepath.Join(".git/refs/heads", branch)) {
continue
}