diff options
author | Niklas Hambüchen <mail@nh2.me> | 2023-04-18 21:06:49 +0200 |
---|---|---|
committer | Niklas Hambüchen <mail@nh2.me> | 2023-04-18 21:06:49 +0200 |
commit | 7839edd67f7cf75aef195a4978c8a9b8b152c819 (patch) | |
tree | 6836419f6477ebd6a3f4cba287baddf2a9d13f80 /doc/tutorial/just-execute.org | |
parent | d078dced9183e80786d8b3624fb0b9c3c459b55a (diff) | |
download | justbuild-7839edd67f7cf75aef195a4978c8a9b8b152c819.tar.gz |
Fix typos "boostrap" -> "bootstrap".
I know "boost rap" is a popular music genre among C++ programmers today,
but nevertheless this is a typo.
Diffstat (limited to 'doc/tutorial/just-execute.org')
-rw-r--r-- | doc/tutorial/just-execute.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tutorial/just-execute.org b/doc/tutorial/just-execute.org index 912fd4bd..5605dcd8 100644 --- a/doc/tutorial/just-execute.org +++ b/doc/tutorial/just-execute.org @@ -458,14 +458,14 @@ RUN apt install -y --no-install-recommends \ RUN git clone https://github.com/just-buildsystem/justbuild.git # use a well defined commit to foster reproducibility RUN git checkout 246e1b7f28f319e4be5bd24466494e6b5868ca6f -RUN cd justbuild && ./bin/bootstrap.py . /just-boostrapped +RUN cd justbuild && ./bin/bootstrap.py . /just-bootstrapped # Stage 2: setup the required environment and run just execute # FROM debian:bullseye-slim # Copy the binary from the build container -COPY --from=build /just-boostrapped/out/bin/just /bin/just +COPY --from=build /just-bootstrapped/out/bin/just /bin/just # the environment created for this example happens to satisfy the # run-time dependencies of just remember to double check it with your |