summaryrefslogtreecommitdiff
path: root/hadrian/bootstrap/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'hadrian/bootstrap/README.md')
-rw-r--r--hadrian/bootstrap/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/hadrian/bootstrap/README.md b/hadrian/bootstrap/README.md
index b20534dfe0..26bde05150 100644
--- a/hadrian/bootstrap/README.md
+++ b/hadrian/bootstrap/README.md
@@ -9,7 +9,7 @@ for packagers. If you are a developer then build hadrian using cabal-install.
If you want to bootstrap with ghc-8.10.5 then run the ./bootstrap script with the
`plan-bootstrap-8.10.5.json` file.
- bootstrap.py -d plan-bootstrap-8.10.5.json -w /path/to-ghc
+ ./bootstrap.py -d plan-bootstrap-8_10_5.json -w /path/to-ghc
This default option will download the dependencies using the network.
@@ -18,16 +18,16 @@ The result of the bootstrap script will be a hadrian binary in
Alternatively, you can provide a tarball with the source of any dependencies.
- bootstrap.py -d plan-bootstrap-8.10.5.json -w /path/to-ghc -s sources-tarball.tar.gz
+ ./bootstrap.py -w /path/to-ghc -s sources-tarball.tar.gz
Which dependencies you need can be queried using the `list-sources` option.
- bootstrap.py list-sources -d plan-bootstrap-8.10.5.json
+ ./bootstrap.py -d plan-bootstrap-8_10_5.json list-sources
This produces `fetch_plan.json` which tells you where to get each source from.
You can instruct the script to create the tarball using the `fetch` option.
- bootstrap.py fetch -d plan-bootstrap-8.10.5.json -o sources-tarball.tar.gz
+ ./bootstrap.py -d plan-bootstrap-8_10_5.json fetch -o sources-tarball
## Generating the bootstrap plans