Skip to content

Commit

Permalink
adds Prod
Browse files Browse the repository at this point in the history
  • Loading branch information
philipmac committed Dec 9, 2022
1 parent 5b79978 commit e6b84fd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions helper_scripts/generate_venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
set -xe -o pipefail

HEDWIG_ENV=$1
if [[ ! ( $HEDWIG_ENV == "dev" || $HEDWIG_ENV == "qa" ) ]]; then
echo Environment MUST be set to either "qa" or "dev".
echo "env is $HEDWIG_ENV"
if [[ ! ( $HEDWIG_ENV == "dev" || $HEDWIG_ENV == "qa" || $HEDWIG_ENV == "prod" ) ]]; then
echo Environment MUST be set to either "prod", "qa" or "dev".
echo Eg export HEDWIG_ENV=dev
exit 1
fi
Expand Down

0 comments on commit e6b84fd

Please sign in to comment.