Skip to content

Commit 9d6aa14

Browse files
committed
docs: fix binary name in urunc installation from latest release
Signed-off-by: Charalampos Mainas <charalampos.mainas@gmail.com>
1 parent 19e9722 commit 9d6aa14

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ Alternatively, to get the latest
467467

468468
```bash
469469
URUNC_VERSION=$(curl -L -s -o /dev/null -w '%{url_effective}' "https://github.com/urunc-dev/urunc/releases/latest" | grep -oP "v\d+\.\d+\.\d+" | sed 's/v//')
470-
URUNC_BINARY_FILENAME="urunc_static_v${URUNC_VERSION}_$(dpkg --print-architecture)"
470+
URUNC_BINARY_FILENAME="urunc_static_$(dpkg --print-architecture)"
471471
wget -q https://github.com/urunc-dev/urunc/releases/download/v$URUNC_VERSION/$URUNC_BINARY_FILENAME
472472
chmod +x $URUNC_BINARY_FILENAME
473473
sudo mv $URUNC_BINARY_FILENAME /usr/local/bin/urunc
@@ -476,7 +476,7 @@ sudo mv $URUNC_BINARY_FILENAME /usr/local/bin/urunc
476476
And for `containerd-shim-urunc-v2`:
477477

478478
```bash
479-
CONTAINERD_BINARY_FILENAME="containerd-shim-urunc-v2_static_v${URUNC_VERSION}_$(dpkg --print-architecture)"
479+
CONTAINERD_BINARY_FILENAME="containerd-shim-urunc-v2_static_$(dpkg --print-architecture)"
480480
wget -q https://github.com/urunc-dev/urunc/releases/download/v$URUNC_VERSION/$CONTAINERD_BINARY_FILENAME
481481
chmod +x $CONTAINERD_BINARY_FILENAME
482482
sudo mv $CONTAINERD_BINARY_FILENAME /usr/local/bin/containerd-shim-urunc-v2

docs/tutorials/knative.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ image building and deployment.
1717
Install [Docker](/quickstart/#install-docker), Go >= 1.21, and `ko`:
1818

1919
### Install Go 1.21
20+
2021
```bash
2122
sudo mkdir /usr/local/go1.21
2223
wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz

0 commit comments

Comments
 (0)