From 501a8cf88258b1b0ab25f9cdfb845978487b52a4 Mon Sep 17 00:00:00 2001
From: David Hoese <david.hoese@ssec.wisc.edu>
Date: Thu, 12 Nov 2020 15:46:16 -0600
Subject: [PATCH] Fix script path in tests yaml

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

diff --git a/ci_tests/gitlab-ci.yaml b/ci_tests/gitlab-ci.yaml
index 85f5346..6cd9426 100644
--- a/ci_tests/gitlab-ci.yaml
+++ b/ci_tests/gitlab-ci.yaml
@@ -71,9 +71,9 @@ test_basic_grb:
   stage: test
   script:
     # need to source to get release name variables for cleanup
-    - source ../../ci_tests/run_basic_grb_test.sh
+    - source ./ci_tests/run_basic_grb_test.sh
   after_script:
-    - ../../ci_tests/cleanup_basic_grb_test.sh
+    - ./ci_tests/cleanup_basic_grb_test.sh
   dependencies:
     - get_chart_grb
   rules:
-- 
GitLab