diff options
author | Leif Metcalf <me@leif.nz> | 2020-09-12 23:22:58 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-09-17 01:28:01 -0400 |
commit | 76d3bcbcef61ac71677855d6f90754ef019b9b4f (patch) | |
tree | e6d4554b33d9847640170652764244e189bdc1fb /README.md | |
parent | 7cf09ab013778227caa07b5d7ec9acd5dedd1817 (diff) | |
download | haskell-76d3bcbcef61ac71677855d6f90754ef019b9b4f.tar.gz |
Replace deprecated git --recursive
The --recursive flag of git-clone has been replaced by the
--recurse-submodules flag since git 1.7.4, released in 2011.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ There are two ways to get a source tree: 2. *Check out the source code from git* - $ git clone --recursive git@gitlab.haskell.org:ghc/ghc.git + $ git clone --recurse-submodules git@gitlab.haskell.org:ghc/ghc.git Note: cloning GHC from Github requires a special setup. See [Getting a GHC repository from Github][7]. |