From 86a8394c06c1301341320a4fb6e5f4c268be9e05 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Tue, 9 Nov 2021 10:47:38 +0100 Subject: go: fix shellcheck error --- extra/go/build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extra/go/build b/extra/go/build index c051bc2d..6c394266 100755 --- a/extra/go/build +++ b/extra/go/build @@ -12,8 +12,8 @@ export GOARCH=amd64 export GO_LDFLAGS="-w -s" [ -f "$CPT_ROOT/var/db/cpt/installed/go/manifest" ] || { - export GOROOT=$PWD/go1.4-bootstrap - export GOROOT_FINAL=$PWD/lib/go-bootstrap + export GOROOT="$PWD/go1.4-bootstrap" + export GOROOT_FINAL="$PWD/lib/go-bootstrap" mkdir -p lib/go-bootstrap @@ -29,10 +29,10 @@ export GOROOT_FINAL=/usr/lib/go if [ -f "$CPT_ROOT/var/db/cpt/go/manifest" ]; then export GOROOT_BOOTSTRAP=/usr/lib/go else - export GOROOT_BOOTSTRAP=$PWD/lib/go-bootstrap + export GOROOT_BOOTSTRAP="$PWD/lib/go-bootstrap" fi -export GOROOT=$PWD/go-current +export GOROOT="$PWD/go-current" ( cd "$GOROOT/src" -- cgit v1.2.3