diff --git a/.circleci/config.yml b/.circleci/config.yml index 4880d03..bf08f83 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,7 +31,7 @@ jobs: command: | . venv/bin/activate export GLOBAL_MODEL_SUFFIX=`date +%s` - touch .env && echo 'GLOBAL_MODEL_SUFFIX=$GLOBAL_MODEL_SUFFIX' >> .env + touch .env && echo "GLOBAL_MODEL_SUFFIX=$GLOBAL_MODEL_SUFFIX" >> .env mv ./integration_tests/models/test_model_table.sql ./integration_tests/models/test_model_table_`echo $GLOBAL_MODEL_SUFFIX`.sql mv ./integration_tests/models/test_model_view.sql ./integration_tests/models/test_model_view_`echo $GLOBAL_MODEL_SUFFIX`.sql sed -i -e "s/test_model_table/test_model_table_$GLOBAL_MODEL_SUFFIX/g" ./integration_tests/models/properties.yml