diff options
author | Joey Hess <joey@kitenet.net> | 2014-03-02 16:00:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-03-02 16:00:56 -0400 |
commit | e3cfcfb6d8f5bdb198813b065df07e9665262770 (patch) | |
tree | 46a39ced3c0308a578b1f47b9d3da16f744dfd18 | |
parent | 3a6b9a7fdea3b4acea43a51d4656efe62f36238c (diff) |
view: Refuse to enter a view when no branch is currently checked out.
-rw-r--r-- | Command/View.hs | 10 | ||||
-rw-r--r-- | debian/changelog | 1 |
2 files changed, 5 insertions, 6 deletions
diff --git a/Command/View.hs b/Command/View.hs index 155b6057d..93b045c39 100644 --- a/Command/View.hs +++ b/Command/View.hs @@ -45,13 +45,11 @@ paramView :: String paramView = paramPair (paramRepeating "TAG") (paramRepeating "FIELD=VALUE") mkView :: [String] -> Annex View -mkView params = do - v <- View <$> viewbranch <*> pure [] - return $ fst $ refineView v $ - map parseViewParam $ reverse params +mkView params = go =<< inRepo Git.Branch.current where - viewbranch = fromMaybe (error "not on any branch!") - <$> inRepo Git.Branch.current + go Nothing = error "not on any branch!" + go (Just b) = return $ fst $ refineView (View b []) $ + map parseViewParam $ reverse params checkoutViewBranch :: View -> (View -> Annex Git.Branch) -> CommandCleanup checkoutViewBranch view mkbranch = do diff --git a/debian/changelog b/debian/changelog index 6124ba135..edbe3bab6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,7 @@ git-annex (5.20140228) UNRELEASED; urgency=medium * view, vfilter: Add support for filtering tags and values out of a view, using !tag and field!=value. * vadd: Allow listing multiple desired values for a field. + * view: Refuse to enter a view when no branch is currently checked out. -- Joey Hess <joeyh@debian.org> Fri, 28 Feb 2014 14:52:15 -0400 |