From 200d6b08e2a51169eea33e03d1be51673bb532ad Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Tue, 6 Feb 2024 10:15:03 -0500
Subject: [PATCH] Quote variable values

---
 .gitlab-ci-unix.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci-unix.yml b/.gitlab-ci-unix.yml
index b6d09e34a6..e38bbb62e8 100644
--- a/.gitlab-ci-unix.yml
+++ b/.gitlab-ci-unix.yml
@@ -13,11 +13,11 @@ spec:
 ".$[[ inputs.os ]]":
   extends: .rules
   tags: 
-    - $[[ inputs.tagname ]]
+    - "$[[ inputs.tagname ]]"
   variables:
-    CROSS_PLATFORM: $[[ inputs.cross_platform ]]
-    OS: $[[ inputs.os ]]
-    PLATFORM: $[[ inputs.platform ]]
+    CROSS_PLATFORM: "$[[ inputs.cross_platform ]]"
+    OS: "$[[ inputs.os ]]"
+    PLATFORM: "$[[ inputs.platform ]]"
     OSP: "$[[ inputs.os ]]-$[[ inputs.platform ]]"
     BUILD_FLAGS: "$[[ inputs.build_flags ]]"
     NO_JAVASCRIPT: "$[[ inputs.no_javascript ]]"
-- 
GitLab