Skip to content

Commit 2bd1942

Browse files
committed
fix: add .network to .envs
1 parent b669dea commit 2bd1942

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -291,21 +291,21 @@ verifier_disable:
291291

292292
strategies_get_weight:
293293
@echo "Getting weight of strategy: $(STRATEGY_INDEX)"
294-
@. contracts/scripts/.env && . contracts/scripts/get_strategy_weight.sh $(STRATEGY_INDEX)
294+
@. contracts/scripts/.env.$(NETWORK) && . contracts/scripts/get_strategy_weight.sh $(STRATEGY_INDEX)
295295

296296
strategies_update_weight:
297297
@echo "Updating strategy weights: "
298298
@echo "STRATEGY_INDICES: $(STRATEGY_INDICES)"
299299
@echo "NEW_MULTIPLIERS: $(NEW_MULTIPLIERS)"
300-
@. contracts/scripts/.env && . contracts/scripts/update_strategy_weight.sh $(STRATEGY_INDICES) $(NEW_MULTIPLIERS)
300+
@. contracts/scripts/.env.$(NETWORK) && . contracts/scripts/update_strategy_weight.sh $(STRATEGY_INDICES) $(NEW_MULTIPLIERS)
301301

302302
strategies_remove:
303303
@echo "Removing strategies: $(INDICES_TO_REMOVE)"
304-
@. contracts/scripts/.env && . contracts/scripts/remove_strategy.sh $(INDICES_TO_REMOVE)
304+
@. contracts/scripts/.env.$(NETWORK) && . contracts/scripts/remove_strategy.sh $(INDICES_TO_REMOVE)
305305

306306
strategies_get_addresses:
307307
@echo "Getting strategy addresses"
308-
@. contracts/scripts/.env && . contracts/scripts/get_restakeable_strategies.sh
308+
@. contracts/scripts/.env.$(NETWORK) && . contracts/scripts/get_restakeable_strategies.sh
309309

310310
__BATCHER__:
311311

0 commit comments

Comments
 (0)