Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
vdelacruzb committed Mar 18, 2024
2 parents 943aa39 + 3f7804b commit 96440a2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion clouds/bigquery/modules/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ test: check $(NODE_MODULES_DEV)

remove: check
echo "Removing modules..."
$(BQ) rm -r -f -d $(BQ_DEPLOY_DATASET)
REPLACEMENTS=$(REPLACEMENTS)" "$(REPLACEMENTS_EXTRA) \
GOOGLE_APPLICATION_CREDENTIALS=$(GOOGLE_APPLICATION_CREDENTIALS) \
$(COMMON_DIR)/run-script.js $(COMMON_DIR)/DROP_FUNCTIONS.sql

remove-functions: check
echo "Removing functions..."
Expand Down
3 changes: 2 additions & 1 deletion clouds/postgres/modules/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ test: check venv3 $(NODE_MODULES_DEV)

remove: venv3
echo "Removing modules..."
$(VENV3_BIN)/python $(COMMON_DIR)/run_query.py "DROP SCHEMA IF EXISTS $(PG_SCHEMA) CASCADE;"
REPLACEMENTS=$(REPLACEMENTS)" "$(REPLACEMENTS_EXTRA) \
$(VENV3_BIN)/python $(COMMON_DIR)/run_script.py $(COMMON_DIR)/DROP_FUNCTIONS.sql

remove-functions: venv3
echo "Removing functions..."
Expand Down
3 changes: 2 additions & 1 deletion clouds/redshift/modules/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ test: check venv3 $(NODE_MODULES_DEV)

remove: venv3
echo "Removing modules..."
$(VENV3_BIN)/python $(COMMON_DIR)/run_query.py "DROP SCHEMA IF EXISTS $(RS_SCHEMA) CASCADE;"
REPLACEMENTS=$(REPLACEMENTS)" "$(REPLACEMENTS_EXTRA) \
$(VENV3_BIN)/python $(COMMON_DIR)/run_script.py $(COMMON_DIR)/DROP_FUNCTIONS.sql

remove-functions: venv3
echo "Removing functions..."
Expand Down
3 changes: 2 additions & 1 deletion clouds/snowflake/modules/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ test: check $(NODE_MODULES_DEV)

remove: $(NODE_MODULES_DEV)
echo "Removing modules..."
$(COMMON_DIR)/run-query.js "DROP SCHEMA IF EXISTS $(SF_SCHEMA) CASCADE;"
REPLACEMENTS=$(REPLACEMENTS)" "$(REPLACEMENTS_EXTRA) \
$(COMMON_DIR)/run-script.js $(COMMON_DIR)/DROP_FUNCTIONS.sql

remove-functions: $(NODE_MODULES_DEV)
echo "Removing functions..."
Expand Down

0 comments on commit 96440a2

Please sign in to comment.