From 0d3f2966a31829583fa363e1a590f7759477c6f7 Mon Sep 17 00:00:00 2001
From: Rick Carback <rick@privategrity.com>
Date: Thu, 1 Mar 2018 20:31:04 +0000
Subject: [PATCH] Put the curl calls inside quotes to fix linter errors

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d60212b..1a5f6cc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -34,8 +34,8 @@ before_script:
   - echo $CI_BUILD_REF
   - echo $CI_PROJECT_DIR
   - mkdir -p bin
-  - curl -f -L -H "PRIVATE-TOKEN: $PATKEY" -o bin/server $SERVER_URL
-  - curl -f -L -H "PRIVATE-TOKEN: $PATKEY" -o bin/client $CLIENT_URL
+  - "curl -f -L -H \"PRIVATE-TOKEN: $PATKEY\" -o bin/server $SERVER_URL"
+  - "curl -f -L -H \"PRIVATE-TOKEN: $PATKEY\" -o bin/client $CLIENT_URL"
   - echo $PWD
   - find bin/ -type f
 
-- 
GitLab