From 88f1dbeed092622c406e84cc9c2d836fb6c7adb5 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 14 Jan 2022 13:08:32 -0500
Subject: [PATCH] blah blah shell quoting blah blah

---
 .circleci/config.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 726b0fe..81f1591 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -71,8 +71,8 @@ jobs:
             nix-build \
               -vvvv \
               --debug \
-              "${EXTRA_SUBSTITUTERS}" \
-              "${EXTRA_TRUSTED_PUBLIC_KEYS}" \
+              ${EXTRA_SUBSTITUTERS} \
+              ${EXTRA_TRUSTED_PUBLIC_KEYS} \
               -j 4 \
               ./nix/ \
               -A PaymentServer.components.exes."PaymentServer-exe"
@@ -81,8 +81,8 @@ jobs:
           name: "Building Tests"
           command: |
             nix-build \
-              "${EXTRA_SUBSTITUTERS}" \
-              "${EXTRA_TRUSTED_PUBLIC_KEYS}" \
+              ${EXTRA_SUBSTITUTERS} \
+              ${EXTRA_TRUSTED_PUBLIC_KEYS} \
               -j 4 \
               ./nix/ \
               -A PaymentServer.components.tests."PaymentServer-tests"
-- 
GitLab