Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install/src/Help.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ printUsage :: Action ()
printUsage = do
printLine ""
printLine "Usage:"
printLineIndented ("stack install.hs <target>")
printLineIndented "stack install.hs <target>"
printLineIndented "or"
printLineIndented ("cabal new-run install.hs --project-file shake.project <target>")
printLineIndented "cabal new-run install.hs --project-file install/shake.project <target>"

-- | short help message is printed by default
shortHelpMessage :: Action ()
Expand Down
2 changes: 1 addition & 1 deletion install/src/HieInstall.hs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ defaultMain = do
)

-- stack specific targets
phony "stack-build" (need (reverse $ map ("hie-" ++) hieVersions))
phony "stack-build" (need (reverse $ map ("stack-hie-" ++) hieVersions))
phony "stack-build-all" (need ["build-data", "build"])
phony "stack-build-data" $ do
need ["submodules"]
Expand Down