diff options
| author | Jeff Carr <[email protected]> | 2025-01-30 02:24:17 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-30 02:24:17 -0600 |
| commit | 4539a85125c3d0c390b6f88d1a3aaae67b3d46b6 (patch) | |
| tree | 97fd48b342a4c1f89ccc3c4b470bc2e4e8fffa3a | |
| parent | 5d2daf75c049caf277d92d64549c3b9bb2da20a9 (diff) | |
trying to fix the user branch create
| -rw-r--r-- | doCheckout.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doCheckout.go b/doCheckout.go index 82d649e..b7ef7d5 100644 --- a/doCheckout.go +++ b/doCheckout.go @@ -102,9 +102,9 @@ func rillCheckoutUser(repo *gitpb.Repo) error { // never do dirty repos return nil } - if repo.GetCurrentBranchName() == repo.GetDevelBranchName() { + if repo.GetCurrentBranchName() == repo.GetMasterBranchName() { // repo is already on devel branch. have to move them there first for now - return rillCheckoutDevel(repo) + // return repo.CheckoutDevel() } if repo.GetCurrentBranchName() == repo.GetUserBranchName() { // repo is already on user branch |
