diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-18 20:57:14 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-18 20:57:14 -0400 |
commit | 935f5ed55b1ed9a218955fdd34cb40db3b1c9425 (patch) | |
tree | 0409ba3b6decae4764b39b0b4b827d093f081039 /Command/VPop.hs | |
parent | 59d66243ab57890cbbe7fdc0a7c7c78c24702b95 (diff) |
fix view changing when in subdir
Failed reading some files with relative paths. This is a quick and dirty
fix.
Diffstat (limited to 'Command/VPop.hs')
-rw-r--r-- | Command/VPop.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/VPop.hs b/Command/VPop.hs index 03905b751..52c2b7f0c 100644 --- a/Command/VPop.hs +++ b/Command/VPop.hs @@ -32,7 +32,7 @@ start = go =<< currentView <$> recentViews case vs of (_v:oldv:_) -> next $ next $ - checkoutViewBranch oldv (branchView oldv) + checkoutViewBranch oldv (return . branchView) _ -> next $ next $ inRepo $ Git.Command.runBool [ Param "checkout" |