@@ -205,9 +205,9 @@ Stack does not stand alone. It is built on the great work provided by:
205
205
206
206
!!! info
207
207
208
- Cabal is also the name of another build tool, provided the `cabal-install`
209
- package. This guide distinguishes between then by Cabal (the library) and
210
- Cabal (the tool).
208
+ Cabal is also the name of another build tool, provided by the
209
+ `cabal-install` package. This guide distinguishes between them by Cabal
210
+ (the library) and Cabal (the tool).
211
211
212
212
* The __ Hackage Haskell Package Repository__ , a
213
213
[ repository] ( https://hackage.haskell.org/ ) of Haskell packages providing
@@ -244,40 +244,40 @@ label on the GitHub issue tracker.
244
244
The following assumes that you already have installed a version of Stack and the
245
245
[ Git application] ( https://git-scm.com/ ) .
246
246
247
- 1 . Clone the ` stack ` repository from GitHub with the command:
247
+ 1 . Clone the ` stack ` repository from GitHub with the command:
248
248
249
249
~~~ text
250
250
git clone https://github.com/commercialhaskell/stack.git`
251
251
~~~
252
252
253
- 2. Change the current working directory to the cloned `stack` directory with the
254
- command:
253
+ 2. Change the current working directory to the cloned `stack` directory with the
254
+ command:
255
255
256
256
~~~text
257
257
cd stack
258
258
~~~
259
259
260
- 3. Build the `stack` executable using a pre-existing installation of Stack with
261
- the command:
260
+ 3. Build the `stack` executable using a pre-existing installation of Stack with
261
+ the command:
262
262
263
263
~~~text
264
264
stack build
265
265
~~~
266
266
267
- 4. Once the `stack` executable has been built, check its version with the
268
- command:
267
+ 4. Once the `stack` executable has been built, check its version with the
268
+ command:
269
269
270
270
~~~text
271
271
stack exec -- stack --version
272
272
~~~
273
273
274
- Make sure the version is the latest one.
274
+ Make sure the version is the latest one.
275
275
276
- 5. In the GitHub respository's issue tracker, look for issues tagged with
277
- [newcomer friendly](https://github.com/commercialhaskell/stack/issues?q=is%3Aopen+is%3Aissue+label%3a%22newcomer+friendly%22)
278
- and
279
- [awaiting pull request](https://github.com/commercialhaskell/stack/issues?q=is%3Aopen+is%3Aissue+label%3A%22awaiting+pull+request%22)
280
- labels.
276
+ 5. In the GitHub respository's issue tracker, look for issues tagged with
277
+ [newcomer friendly](https://github.com/commercialhaskell/stack/issues?q=is%3Aopen+is%3Aissue+label%3a%22newcomer+friendly%22)
278
+ and
279
+ [awaiting pull request](https://github.com/commercialhaskell/stack/issues?q=is%3Aopen+is%3Aissue+label%3A%22awaiting+pull+request%22)
280
+ labels.
281
281
282
282
If you need to check your changes quickly command:
283
283
0 commit comments