Skip to content

Commit

Permalink
Merge pull request #18334 from ftambara/main
Browse files Browse the repository at this point in the history
fix: remove excessive quoting in engine/install
  • Loading branch information
dvdksn authored Nov 24, 2023
2 parents d71a15d + d8ac109 commit 1b7d8d1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions content/engine/install/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ Docker from the repository.

# Add the repository to Apt sources:
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] {{% param "download-url-base" %}} \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] {{% param "download-url-base" %}} \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
```
Expand Down
4 changes: 2 additions & 2 deletions content/engine/install/raspberry-pi-os.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ Docker from the repository.

# Set up Docker's APT repository:
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] {{% param "download-url-base" %}} \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] {{% param "download-url-base" %}} \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
```
Expand Down
4 changes: 2 additions & 2 deletions content/engine/install/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ Docker from the repository.

# Add the repository to Apt sources:
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] {{% param "download-url-base" %}} \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] {{% param "download-url-base" %}} \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
```
Expand Down

0 comments on commit 1b7d8d1

Please sign in to comment.