From 24d0565f89c3f3f3862ada22e4583c72e1558050 Mon Sep 17 00:00:00 2001 From: Alistair Mackay <34012094+fireflycons@users.noreply.github.com> Date: Sun, 12 Nov 2023 08:41:07 +0000 Subject: [PATCH] shell quoting --- docs/17-e2e-tests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/17-e2e-tests.md b/docs/17-e2e-tests.md index aecad9b..9e021f0 100644 --- a/docs/17-e2e-tests.md +++ b/docs/17-e2e-tests.md @@ -3,8 +3,8 @@ ## Install latest Go ```bash -GO_VERSION=$(curl -s https://go.dev/VERSION?m=text | head -1) -wget https://dl.google.com/go/${GO_VERSION}.linux-amd64.tar.gz +GO_VERSION=$(curl -s 'https://go.dev/VERSION?m=text' | head -1) +wget "https://dl.google.com/go/${GO_VERSION}.linux-amd64.tar.gz" sudo tar -C /usr/local -xzf ${GO_VERSION}.linux-amd64.tar.gz ```