summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.go b/main.go
index 77cd01c..be2f0b6 100644
--- a/main.go
+++ b/main.go
@@ -62,7 +62,11 @@ func main() {
if argv.Checkout != nil {
if argv.Checkout.User != nil {
- me.forge.CheckoutUser()
+ if argv.Force {
+ me.forge.CheckoutUserForce()
+ } else {
+ me.forge.CheckoutUser()
+ }
me.forge = forgepb.Init()
me.found = new(gitpb.Repos)
argv.Checkout.User.findRepos()