aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGreg Steuck <greg@nest.cx>2022-12-01 09:52:17 -0800
committerAleksandr Nogikh <wp32pw@gmail.com>2022-12-06 13:55:30 +0100
commitd88f3abb0873e90df9259d60d5bcd3ad796db6b8 (patch)
tree3472468041d38ff141e84f436e1b838b9274ebd0 /tools
parent0f80407618ff3f06d6e9996a904b72c352c9f36a (diff)
tools: quoting is required when writing shell scripts from shell
Diffstat (limited to 'tools')
-rwxr-xr-xtools/create-openbsd-gce-ci.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/create-openbsd-gce-ci.sh b/tools/create-openbsd-gce-ci.sh
index 980fcc9b1..d707202ef 100755
--- a/tools/create-openbsd-gce-ci.sh
+++ b/tools/create-openbsd-gce-ci.sh
@@ -67,7 +67,7 @@ EOF2
set -eux
ulimit -d 8000000
export GOCACHE=/syzkaller/go-cache
- mkdir -p $GOCACHE
+ mkdir -p \$GOCACHE
test -x syz-ci || (
go get github.com/google/syzkaller/syz-ci &&
go build github.com/google/syzkaller/syz-ci)