diff options
author | Daniel Gröber <dxld@darkboxed.org> | 2018-12-16 01:49:21 +0100 |
---|---|---|
committer | Daniel Gröber <dxld@darkboxed.org> | 2019-01-22 03:06:51 +0100 |
commit | a6059d493e2948bb033eb37beb2a962d1f5ec2f3 (patch) | |
tree | 6f826805b9c4b10cd269dd1b7e1dc7daf525b752 /lib/Distribution | |
parent | 6208bb73fef1a12874db0e2d9b9f25f5dadc2e29 (diff) |
Fix warning
Diffstat (limited to 'lib/Distribution')
-rw-r--r-- | lib/Distribution/Helper.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Distribution/Helper.hs b/lib/Distribution/Helper.hs index 6344b42..73c3438 100644 --- a/lib/Distribution/Helper.hs +++ b/lib/Distribution/Helper.hs @@ -348,7 +348,7 @@ shallowReconfigureProject QueryEnv ["new-build", "--dry-run", "all"] "" return () shallowReconfigureProject QueryEnv - { qeProjLoc = ProjLocStackDir projdir, .. } = do + { qeProjLoc = ProjLocStackDir _projdir, .. } = do -- -- In case we ever need to read the cabal files before the Unit stage, this command regenerates them from package.yaml -- _ <- liftIO $ qeReadProcess (Just projdir) (stackProgram qePrograms) -- ["build", "--dry-run"] "" |