summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorLeif Metcalf <me@leif.nz>2020-03-25 15:48:25 +0900
committerGitHub <noreply@github.com>2020-03-25 15:48:25 +0900
commitc3f8e598ed457688bac68516f2ccf9894e5236ed (patch)
tree3d0b0f588412dc396d0bb7f701747e7491f4f70c /doc
parent8e8efc7ace2c120f5ad17e4c62787bcba103b4df (diff)
downloadnixpkgs-c3f8e598ed457688bac68516f2ccf9894e5236ed.tar
nixpkgs-c3f8e598ed457688bac68516f2ccf9894e5236ed.tar.gz
nixpkgs-c3f8e598ed457688bac68516f2ccf9894e5236ed.tar.bz2
nixpkgs-c3f8e598ed457688bac68516f2ccf9894e5236ed.tar.lz
nixpkgs-c3f8e598ed457688bac68516f2ccf9894e5236ed.tar.xz
nixpkgs-c3f8e598ed457688bac68516f2ccf9894e5236ed.tar.zst
nixpkgs-c3f8e598ed457688bac68516f2ccf9894e5236ed.zip
Update git clone command example
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/haskell.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/haskell.section.md b/doc/languages-frameworks/haskell.section.md
index 944c17a137e..54ba8e4786d 100644
--- a/doc/languages-frameworks/haskell.section.md
+++ b/doc/languages-frameworks/haskell.section.md
@@ -369,7 +369,7 @@ automatically select the right version of GHC and other build tools to build,
 test and execute apps in an existing project downloaded from somewhere on the
 Internet. Pass the `--nix` flag to any `stack` command to do so, e.g.
 ```shell
-git clone --recursive https://github.com/yesodweb/wai
+git clone --recurse-submodules https://github.com/yesodweb/wai.git
 cd wai
 stack --nix build
 ```