From 32ebc4c4bf03ff1499f29e52e59560511fefa86b Mon Sep 17 00:00:00 2001
From: Ismail Ahmad <Ismail.ahmad.217@gmail.com>
Date: Tue, 1 Dec 2020 11:29:50 -0500
Subject: [PATCH] adds chmod for real

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5118a90a28..84e67d4aac 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -31,10 +31,10 @@ stages:
   image: registry.dsop.io/platform-one/big-bang/pipeline-templates/pipeline-templates/k3d-builder:0.0.1
 
 .deploy_bigbang: &deploy_bigbang
-  - for script in ./scripts/*.sh; do $script; done
+  - for script in ./scripts/*.sh; do chmod +x $script && $script; done
 
 .test_bigbang: &test_bigbang
-  - for test in ./tests/bash/*.sh; do $test; done 
+  - for test in ./tests/bash/*.sh; do chmod +x $test && $test; done 
 
 clean install:
   stage: smoke tests
-- 
GitLab