Skip to content

Commit 93d989c

Browse files
committed
Merge remote-tracking branch 'origin/stable'
2 parents 9fcf300 + 730d776 commit 93d989c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

doc/GUIDE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,6 +1157,10 @@ Flags worth mentioning:
11571157
variable from being set. Some tools — notably cabal-install — do not behave
11581158
well with that variable set.
11591159
1160+
You may also find it convenient to use `stack exec` to launch a subshell (substitute `bash` with your preferred shell) where your compiled executable is available at the front of your `PATH`:
1161+
1162+
stack exec bash
1163+
11601164
## ghci (the repl)
11611165
11621166
GHCi is the interactive GHC environment, a.k.a. the REPL. You *could* access it

doc/build_command.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ of different syntaxes supported for this list:
9696
the local packages." This will result in an error if multiple packages
9797
have a component with the same name. To continue the above example,
9898
`stack build :mytestsuite`.
99-
* Side note: the commonly requested `run` command is not available
100-
because it's a simple combination of `stack build :exename && stack exec exename`
10199

102100
* *directory*, e.g. `stack build foo/bar`, will find all local packages that
103101
exist in the given directory hierarchy and then follow the same procedure as

doc/yaml_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ user's local packages, these dependencies aren't built by default. They only get
4141
built when needed.
4242

4343
Shadowing semantics, described
44-
[here](http://docs.haskellstack.org/en/stable/architecture/#shadowing), are
44+
[here](https://docs.haskellstack.org/en/v1.5.1/architecture/#shadowing), are
4545
applied to your configuration. So, if you add a package to your `packages` list,
4646
it will be used even if you're using a snapshot that specifies a particular
4747
version. Similarly, `extra-deps` will shadow the version specified in the

0 commit comments

Comments
 (0)