Got my logic backwards :(

This commit is contained in:
Michael Snoyman 2016-11-23 15:34:14 +02:00
parent db3beff4f3
commit 6048a2c9bf

View File

@ -230,9 +230,9 @@ devel opts passThroughArgs = do
-- Find out the name of our package, needed for the upcoming Stack -- Find out the name of our package, needed for the upcoming Stack
-- commands -- commands
#if MIN_VERSION_Cabal(1, 20, 0) #if MIN_VERSION_Cabal(1, 20, 0)
cabal <- D.findPackageDesc "."
#else
cabal <- D.tryFindPackageDesc "." cabal <- D.tryFindPackageDesc "."
#else
cabal <- D.findPackageDesc "."
#endif #endif
gpd <- D.readPackageDescription D.normal cabal gpd <- D.readPackageDescription D.normal cabal
let pd = D.packageDescription gpd let pd = D.packageDescription gpd