From 69858231927eab526828f18a5bd8e0dfc36a0683 Mon Sep 17 00:00:00 2001 From: Cassandra Heart Date: Wed, 3 Jan 2024 02:51:15 -0600 Subject: [PATCH] update poor_mans_cicd.sh to use proper flag --- node/poor_mans_cd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/poor_mans_cd.sh b/node/poor_mans_cd.sh index 386cbc4..402599a 100755 --- a/node/poor_mans_cd.sh +++ b/node/poor_mans_cd.sh @@ -1,7 +1,7 @@ #!/bin/bash start_process() { - go run ./... & + GOEXPERIMENT=arenas go run ./... & process_pid=$! child_process_pid=$(pgrep -P $process_pid) }