mirror of https://github.com/voidlizard/hbs2
wip, minor fix
This commit is contained in:
parent
f2451697db
commit
77fe327ea8
|
@ -183,7 +183,7 @@ pManifestList :: GitPerks m => Parser (GitCLI m ())
|
|||
pManifestList = do
|
||||
what <- argument pLwwKey (metavar "LWWREF")
|
||||
pure do
|
||||
heads <- withState $ selectRepoHeadsFor DESC what
|
||||
heads <- withState $ selectRepoHeadsFor ASC what
|
||||
sto <- getStorage
|
||||
for_ heads $ \h -> runMaybeT do
|
||||
|
||||
|
|
|
@ -28,6 +28,8 @@ import Data.Coerce
|
|||
|
||||
import Streaming.Prelude qualified as S
|
||||
|
||||
data Limit = Limit Integer
|
||||
|
||||
data SortOrder = ASC | DESC
|
||||
|
||||
newtype SQL a = SQL a
|
||||
|
|
Loading…
Reference in New Issue