summaryrefslogtreecommitdiff
path: root/checkout.go
diff options
context:
space:
mode:
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
}