diff options
author | Jorropo <jorropo.pgm@gmail.com> | 2021-02-21 23:49:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 23:49:56 +0100 |
commit | 7b156a7add73921ea0a7829dfc9a310d940e02f6 (patch) | |
tree | eeb62f643de58d6977b84ee53d589550c42443a7 /Documentation | |
parent | c909f7001ce7a3bf2d8b4a9f1b70602da7cdc6ed (diff) | |
download | serenity-7b156a7add73921ea0a7829dfc9a310d940e02f6.zip |
Documentation: Combine two "cd" commands in build instructions (#5457)
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildInstructions.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index a00a17a20a..cd52af8009 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -147,8 +147,7 @@ Building the toolchain will also automatically create a `Build/` directory for t Once the toolchain has been built, go into the `Build/` directory and run the commands. Note that while `ninja` seems to be faster, you can also just use GNU make, by omitting `-G Ninja` and calling `make` instead of `ninja`: ```bash -$ cd .. -$ cd Build +$ cd ../Build $ cmake .. -G Ninja $ ninja $ ninja install |