Skip to content

Commit 0a1ab7d

Browse files
committed
fix: reverted a change
1 parent d7c0d58 commit 0a1ab7d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,9 @@ run_storage: ## Run storage using storage-docker-compose.yaml
582582

583583
__DEPLOYMENT__: ## ____
584584
deploy_aligned_contracts: ## Deploy Aligned Contracts. Parameters: NETWORK=<mainnet|holesky|sepolia>
585-
@. contracts/scripts/.env && . contracts/scripts/deploy_aligned_contracts.sh
585+
@echo "Deploying Aligned Contracts on $(NETWORK) network..."
586+
@. contracts/scripts/.env.$(NETWORK) && . contracts/scripts/deploy_aligned_contracts.sh
587+
586588

587589
deploy_pauser_registry: ## Deploy Pauser Registry
588590
@echo "Deploying Pauser Registry..."
@@ -625,7 +627,8 @@ deploy_verify_batch_inclusion_caller:
625627
@. examples/verify/.env && . examples/verify/scripts/deploy_verify_batch_inclusion_caller.sh
626628

627629
deploy_batcher_payment_service: ## Deploy BatcherPayments contract. Parameters: NETWORK=<mainnet|holesky|sepolia>
628-
@. contracts/scripts/.env && . contracts/scripts/deploy_batcher_payment_service.sh
630+
@echo "Deploying BatcherPayments contract on $(NETWORK) network..."
631+
@. contracts/scripts/.env.$(NETWORK) && . contracts/scripts/deploy_batcher_payment_service.sh
629632

630633
upgrade_batcher_payment_service: ## Upgrade BatcherPayments contract. Parameters: NETWORK=<mainnet|holesky|sepolia
631634
@echo "Upgrading BatcherPayments Contract on $(NETWORK) network..."

0 commit comments

Comments
 (0)