File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -9,20 +9,22 @@ stack run [-- ARGUMENT(S) (e.g. stack run -- file.txt)]
9
9
~~~
10
10
11
11
` stack run ` builds a project executable and runs it. If the command has a first
12
- argument and it is recognised as an executable target then that is built.
13
- Otherwise, the project's first executable is built. If the project has no
14
- executables Stack reports no executables found as an error.
12
+ argument and it is recognised as the name of an executable component of a
13
+ project package then that is built. Otherwise, the project's first executable is
14
+ built. If the project has no executables Stack reports no executables found as
15
+ an error.
15
16
16
17
!!! note
17
18
18
- To identify a project's first executable, Stack lists the executable
19
- components, in order, for each package, listed in order. For example:
19
+ To identify a project's first executable, and search for the name of an
20
+ executable component, Stack lists the executable components, in order, for
21
+ each package, listed in order. For example:
20
22
21
23
`packageA:a-exe` < `packageA:b-exe` < `packageB:a-exe` < `packageB:b-exe`
22
24
23
25
Everything after ` -- ` on the command line is interpreted as a command line
24
26
argument to be passed to what is run, other than a first argument recognised as
25
- an executable target .
27
+ the name of an executable component of a project package .
26
28
27
29
By default:
28
30
You can’t perform that action at this time.
0 commit comments