Skip to content

Commit

Permalink
Fix argument order #216
Browse files Browse the repository at this point in the history
  • Loading branch information
snoyberg committed Jun 9, 2015
1 parent 5015220 commit aa7af6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Stack/Setup.hs
Original file line number Diff line number Diff line change
Expand Up @@ -550,8 +550,8 @@ setup7z :: (MonadReader env m, HasHttpManager env, MonadThrow m, MonadIO m, Mona
-> Config
-> m (Path Abs Dir -> Path Abs File -> n ())
setup7z si config = do
chattyDownload (siSevenzDll si) "7z" dll
chattyDownload (siSevenzExe si) "7z" exe
chattyDownload "7z.dll" (siSevenzDll si) dll
chattyDownload "7z.exe" (siSevenzExe si) exe
return $ \outdir archive -> liftIO $ do
ec <- rawSystem (toFilePath exe)
[ "x"
Expand Down

0 comments on commit aa7af6b

Please sign in to comment.