You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following sequence doesn't work as expected (with 323460e)
git clone https://github.com/jgm/pandoc
git clone https://github.com/jgm/pandoc-types
cd pandoc/
cabal sandbox init
cabal sandbox add-source ../pandoc-types
cabal install --only-dep # fails because pandoc-types-1.12 is not found
cabal info pandoc-types-1.12 # fails as well# `cabal sandbox list-sources` would indeed list "pandoc-types"
The following ordering of commands works however:
git clone https://github.com/jgm/pandoc
git clone https://github.com/jgm/pandoc-types
cd pandoc/
cabal sandbox init
cabal install --only-dep # fails as expected, as pandoc-types-1.12 is not released yet
cabal sandbox add-source ../pandoc-types
cabal install --only-dep # now, pandoc-types-1.12 is found
The text was updated successfully, but these errors were encountered:
I think I know what this is. In 272a5c2 I replaced two calls to getModificationTime with a call to a library function. Unfortunately, this also replaced a (>=) comparison with (>).
It looks like #1443 was actually fixed by the change from getModificationTime to
getModTime (which has higher resolution). The change to '>=' was not needed
because the code uses 'when', not 'unless'.
Thanks to Nikita Karetnikov for the heads-up.
It looks like haskell#1443 was actually fixed by the change from getModificationTime to
getModTime (which has higher resolution). The change to '>=' was not needed
because the code uses 'when', not 'unless'.
Thanks to Nikita Karetnikov for the heads-up.
The following sequence doesn't work as expected (with 323460e)
The following ordering of commands works however:
The text was updated successfully, but these errors were encountered: