summaryrefslogtreecommitdiff
path: root/checkout.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-08 10:11:49 -0600
committerJeff Carr <[email protected]>2025-01-08 10:11:49 -0600
commit6c5a8581257404b80e019e6f1ae4157994c06acc (patch)
treeb847cbd8793e4670161d0dc4e8d4899200379d7d /checkout.go
parent0ca1240c7556829d0a43b58a5ea608b6b71e79aa (diff)
minor
Diffstat (limited to 'checkout.go')
-rw-r--r--checkout.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkout.go b/checkout.go
index b25f169..8e489a8 100644
--- a/checkout.go
+++ b/checkout.go
@@ -13,7 +13,7 @@ func (repo *Repo) CheckoutMaster() bool {
func (repo *Repo) CheckoutDevel() bool {
bName := repo.GetDevelBranchName()
if repo.checkoutBranch(bName) {
- repo.UserBranchName = bName
+ repo.DevelBranchName = bName
return true
// switch ok
}