Skip to content

Commit

Permalink
Fix command format in tests/acceptance/run.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Feb 22, 2023
1 parent 0087770 commit 3bad728
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/acceptance/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ then
# explicitly tell Behat to not do colored output
COLORS_OPTION="--no-colors"
# Use the Bash "null" command to do nothing, rather than use tput to set a color
RED_COLOR = ":"
GREEN_COLOR = ":"
YELLOW_COLOR = ":"
RED_COLOR=":"
GREEN_COLOR=":"
YELLOW_COLOR=":"
else
COLORS_OPTION="--colors"
RED_COLOR = "tput setaf 1"
GREEN_COLOR = "tput setaf 2"
YELLOW_COLOR = "tput setaf 3"
RED_COLOR="tput setaf 1"
GREEN_COLOR="tput setaf 2"
YELLOW_COLOR="tput setaf 3"
fi

# The following environment variables can be specified:
Expand Down

0 comments on commit 3bad728

Please sign in to comment.