Skip to content

Commit

Permalink
[CICD-761] Explicitly export color globals
Browse files Browse the repository at this point in the history
Resolves a warning about unused variables in the common file.
  • Loading branch information
mike-day committed Dec 4, 2024
1 parent 9f7ae31 commit 3351cbd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/common.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3351cbd

Please sign in to comment.