From 19a3dabee408a0ee1cf91faaefe1160b854edaea Mon Sep 17 00:00:00 2001 From: Greg Steuck Date: Tue, 25 Apr 2023 19:55:34 +0100 Subject: tools: simplify openbsd startup script It's not worth the trouble to figure out how to quote things to save a single copy for a short literal. --- tools/create-openbsd-gce-ci.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/create-openbsd-gce-ci.sh b/tools/create-openbsd-gce-ci.sh index d707202ef..4756d156f 100755 --- a/tools/create-openbsd-gce-ci.sh +++ b/tools/create-openbsd-gce-ci.sh @@ -66,8 +66,9 @@ EOF2 cd /syzkaller set -eux ulimit -d 8000000 - export GOCACHE=/syzkaller/go-cache - mkdir -p \$GOCACHE + mkdir -p /syzkaller/go-cache + GOCACHE=/syzkaller/go-cache + export GOCACHE test -x syz-ci || ( go get github.com/google/syzkaller/syz-ci && go build github.com/google/syzkaller/syz-ci) -- cgit mrf-deployment