Make code snippets ready for copy+pasting

The backslashes are unnecessary for the likely typical use on the website, which is copying the snippets to paste them into the terminal for execution.
This commit is contained in:
Peter Bittner
2021-08-29 14:57:40 +02:00
committed by GitHub
parent 732917a587
commit 9c20b4cda5

View File

@@ -77,14 +77,14 @@ sudo apt update && sudo apt install codium
#### Debian / Ubuntu (deb package):
Add the GPG key of the repository:
```bash
wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \
| gpg --dearmor \
wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg
| gpg --dearmor
| sudo dd of=/usr/share/keyrings/vscodium-archive-keyring.gpg
```
Add the repository:
```bash
echo 'deb [ signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/debs vscodium main' \
echo 'deb [ signed-by=/usr/share/keyrings/vscodium-archive-keyring.gpg ] https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/debs vscodium main'
| sudo tee /etc/apt/sources.list.d/vscodium.list
```