Skip to content

Commit

Permalink
Merge pull request #5403 from mpilgrem/fixHelp
Browse files Browse the repository at this point in the history
Fix `stack build` & improve `stack path` help text
  • Loading branch information
snoyberg authored Nov 18, 2020
2 parents 60fee51 + 46b3dc5 commit 4c38ee0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Stack/Options/BuildMonoidParser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ buildOptsMonoidParser hide0 =
copyBins =
firstBoolFlagsFalse
"copy-bins"
"copying binaries to the local-bin-path (see 'stack path')"
"copying binaries to local-bin (see 'stack path')"
hide
copyCompilerTool =
firstBoolFlagsFalse
Expand Down
2 changes: 1 addition & 1 deletion src/Stack/Path.hs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ paths =
, ( "Directory containing binaries specific to a particular compiler (e.g. intero)"
, "compiler-tools-bin"
, WithoutHaddocks $ T.pack . toFilePathNoTrailingSep . piToolsDir )
, ( "Local bin dir where stack installs executables (e.g. ~/.local/bin)"
, ( "Local bin dir where stack installs executables (e.g. ~/.local/bin (Unix-like OSs) or %APPDATA%\\local\\bin (Windows))"
, "local-bin"
, WithoutHaddocks $ view $ configL.to configLocalBin.to toFilePathNoTrailingSep.to T.pack)
, ( "Extra include directories"
Expand Down

0 comments on commit 4c38ee0

Please sign in to comment.