Skip to content

Commit

Permalink
fix(deploy): fix encoding for ASCII quotes (#65)
Browse files Browse the repository at this point in the history
Change shell instructions to use ASCII quotes instead of MS Office.

Signed-off-by: Gaurav Mishra <mishra.gaurav@siemens.com>
  • Loading branch information
GMishx authored Feb 4, 2025
1 parent 37b07f2 commit 8cd4c3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/en/docs/Deployment/BareMetal/Deploy-Natively.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ CouchDB is not part of the Ubuntu package management anymore. Thus, you need to

```shell
apt install curl gpg
curl https://couchdb.apache.org/repo/keys.asc | sudo gpg dearmor -o /etc/apt/trusted.gpg.d/couchdb-archive-keyring.gpg
echo deb https://apache.jfrog.io/artifactory/couchdb-deb/ $(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main | sudo tee /etc/apt/sources.list.d/couchdb.list >/dev/null
curl https://couchdb.apache.org/repo/keys.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/couchdb-archive-keyring.gpg
echo "deb https://apache.jfrog.io/artifactory/couchdb-deb/ $(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main" | sudo tee /etc/apt/sources.list.d/couchdb.list >/dev/null
sudo apt-get update -y
sudo apt-get install -y couchdb
```
Expand Down

0 comments on commit 8cd4c3a

Please sign in to comment.