From 7b31bdaeb6ca84ecf3d817fe3f7e56feb2f92e1f Mon Sep 17 00:00:00 2001
From: Tim Macdonald <tim@metabase.com>
Date: Mon, 20 Mar 2023 11:58:52 +0000
Subject: [PATCH] Fix build script quoting (#29351)

It does the wrong thing when passing in a list of :steps.

c.f. discussion at https://metaboat.slack.com/archives/C010L1Z4F9S/p1678905945881399
---
 bin/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/build.sh b/bin/build.sh
index 2a2eec276f6..fb5808d378e 100755
--- a/bin/build.sh
+++ b/bin/build.sh
@@ -12,4 +12,4 @@ check_clojure_cli
 source "./bin/clear-outdated-cpcaches.sh"
 clear_outdated_cpcaches
 
-clojure -X:drivers:build:build/all $@
+clojure -X:drivers:build:build/all "$@"
-- 
GitLab