From 3351cbde8639e4b6572b5e9d7c9370f8c37096b7 Mon Sep 17 00:00:00 2001 From: Michael Day Date: Tue, 3 Dec 2024 22:56:52 -0600 Subject: [PATCH] [CICD-761] Explicitly export color globals Resolves a warning about unused variables in the common file. --- tests/common.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/common.sh b/tests/common.sh index f6f0917..143fb80 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -1,6 +1,6 @@ #!/bin/bash -GREEN='\033[0;32m' -RED='\033[0;31m' -BLUE='\033[0;34m' -NC='\033[0m' # No Color +export GREEN='\033[0;32m' +export RED='\033[0;31m' +export BLUE='\033[0;34m' +export NC='\033[0m' # No Color