Skip to content

Commit

Permalink
fix: remove unnecessary sourcing of python
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhoheiser committed Mar 27, 2024
1 parent f4aba6d commit b0ad9a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ deploy-aws:
cdk synth
@echo "Deploy redshift stack"
cdk deploy KinesisFirehoseRedshiftStack1 --require-approval never
source .venv/bin/activate && python utils/prepare_redshift.py
python utils/prepare_redshift.py
@echo "Deploy firehose stack"
cdk deploy KinesisFirehoseRedshiftStack2 --require-approval never

start-producer:
source .venv/bin/activate && python utils/producer_kinesis.py
python utils/producer_kinesis.py

start-localstack:
@docker ps -f "name=localstack" | grep localstack > /dev/null || (echo "Starting localstack..." && localstack start)
Expand Down

0 comments on commit b0ad9a4

Please sign in to comment.