diff options
author | Kenneth Myhra <kennethmyhra@gmail.com> | 2021-07-14 10:34:29 -0700 |
---|---|---|
committer | Gunnar Beutner <gunnar@beutner.name> | 2021-07-14 19:51:23 +0200 |
commit | 7fa71fb7ebacb821996f283664bfd0f5b76d40f1 (patch) | |
tree | b74167067597bed367972eeb1ad50707b6432963 /Documentation | |
parent | 1c30f0a154c998bdcc0d2ce7dc7a10a736d1256d (diff) | |
download | serenity-7fa71fb7ebacb821996f283664bfd0f5b76d40f1.zip |
Documentation: Remove '$' character from build instruction commands
This removes the '$' character so that it is easier to copy commands
directly from the build instructions and then executing them without
first having to remove the '$' character.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/BuildInstructions.md | 4 | ||||
-rw-r--r-- | Documentation/BuildInstructionsOther.md | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 6a51867d22..519cb1e91f 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -71,7 +71,7 @@ There is also documentation for installing the build prerequisites for some less In order to build SerenityOS you will first need to build the toolchain by running the following command: ```console -$ Meta/serenity.sh rebuild-toolchain +Meta/serenity.sh rebuild-toolchain ``` Later on, when you use `git pull` to get the latest changes, there's (usually) no need to rebuild the toolchain. @@ -79,7 +79,7 @@ Later on, when you use `git pull` to get the latest changes, there's (usually) n Run the following command to build and run SerenityOS: ```console -$ Meta/serenity.sh run +Meta/serenity.sh run ``` This will compile all of SerenityOS and install the built files into the `Build/i686/Root` directory inside your Git diff --git a/Documentation/BuildInstructionsOther.md b/Documentation/BuildInstructionsOther.md index 56e1d435b9..d5b6c6172b 100644 --- a/Documentation/BuildInstructionsOther.md +++ b/Documentation/BuildInstructionsOther.md @@ -86,12 +86,12 @@ apk add cmake e2fsprogs grub-bios samurai mpc1-dev mpfr-dev gmp-dev ccache rsync ## OpenBSD prerequisites ```console -$ doas pkg_add bash cmake g++ gcc git gmake gmp ninja ccache rsync coreutils qemu sudo +doas pkg_add bash cmake g++ gcc git gmake gmp ninja ccache rsync coreutils qemu sudo ``` ## FreeBSD prerequisites ```console -$ pkg install bash coreutils git gmake ninja sudo gmp mpc mpfr ccache rsync +pkg install bash coreutils git gmake ninja sudo gmp mpc mpfr ccache rsync ``` |