Fix conditional statement at travis build.sh file

This commit is contained in:
David Albela Pérez 2020-03-10 18:16:43 +01:00
parent d0a0b8b486
commit e4c009f284
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ export NODE_ENV=production;
if [[ -n "$TRAVIS_TAG" ]]; then
export REACT_APP_ENV='production';
elif [[ "$TRAVIS_BRANCH" == "development" ]];
elif [[ "$TRAVIS_BRANCH" == "development" ]]; then
export NODE_ENV=development;
fi