diff options
| author | Greg Steuck <greg@nest.cx> | 2022-12-01 09:52:17 -0800 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2022-12-06 13:55:30 +0100 |
| commit | d88f3abb0873e90df9259d60d5bcd3ad796db6b8 (patch) | |
| tree | 3472468041d38ff141e84f436e1b838b9274ebd0 | |
| parent | 0f80407618ff3f06d6e9996a904b72c352c9f36a (diff) | |
tools: quoting is required when writing shell scripts from shell
| -rwxr-xr-x | tools/create-openbsd-gce-ci.sh | 2 |
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) |
