summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorinnovaker <66737976+innovaker@users.noreply.github.com>2021-06-15 10:20:42 +0100
committerNick Winans <nick@winans.codes>2021-06-16 16:23:53 -0500
commit84a5fec458d031dbba91972c600fffb997949020 (patch)
tree3cb4a160f7c022d6d21a20803c6aca2ee76971c9 /docs
parent6f3a2529aefefa1d580bd94c9f2025b7a50bfd97 (diff)
docs(setup): remove extra slash from Fedora toolchain install command
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/development/setup.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docs/development/setup.md b/docs/docs/development/setup.md
index 09f1ece..8d8e779 100644
--- a/docs/docs/development/setup.md
+++ b/docs/docs/development/setup.md
@@ -318,7 +318,7 @@ To build firmwares for the ARM architecture (all supported MCUs/keyboards at thi
export ZSDK_VERSION=0.11.4
wget -q "https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${ZSDK_VERSION}/zephyr-toolchain-arm-${ZSDK_VERSION}-setup.run" && \
sh "zephyr-toolchain-arm-${ZSDK_VERSION}-setup.run" --quiet -- -d ~/.local/zephyr-sdk-${ZSDK_VERSION} && \
- rm "zephyr-toolchain-arm-\${ZSDK_VERSION}-setup.run"
+ rm "zephyr-toolchain-arm-${ZSDK_VERSION}-setup.run"
```
The installation will prompt with several questions about installation location, and creating a default `~/.zephyrrc` for you with various variables. The defaults should normally work as expected.