From 7bf7819a0ff69ca2283e2681f5193cdfdc6cf46d Mon Sep 17 00:00:00 2001 From: pineapplepeak Date: Wed, 18 Mar 2026 09:27:55 +0000 Subject: [PATCH] Fix directory path for `set-bridge-partner-threshold` task In the current Makefile, the `SET_BASE_BRIDGE_PARTNER_THRESHOLD_DIR` variable pointed to the `...-pause-bridge-base directory`, which resulted in the creation of a folder with an incorrect name when the `make setup-bridge-partner-threshold` command was executed. Fix: The directory suffix has been changed to `-set-bridge-partner-threshold` so that the make `setup-bridge-partner-threshold` command is created correctly and serves its intended purpose. The directory structure for all setup tasks is now consistent. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9ea20eb3..4d27b243 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ GAS_AND_ELASTICITY_INCREASE_DIR = $(network)/$(shell date +'%Y-%m-%d')-increase- FAULT_PROOF_UPGRADE_DIR = $(network)/$(shell date +'%Y-%m-%d')-upgrade-fault-proofs SAFE_MANAGEMENT_DIR = $(network)/$(shell date +'%Y-%m-%d')-safe-management FUNDING_DIR = $(network)/$(shell date +'%Y-%m-%d')-funding -SET_BASE_BRIDGE_PARTNER_THRESHOLD_DIR = $(network)/$(shell date +'%Y-%m-%d')-pause-bridge-base +SET_BASE_BRIDGE_PARTNER_THRESHOLD_DIR = $(network)/$(shell date +'%Y-%m-%d')-set-bridge-partner-threshold PAUSE_BRIDGE_BASE_DIR = $(network)/$(shell date +'%Y-%m-%d')-pause-bridge-base SWITCH_TO_PERMISSIONED_GAME_DIR=$(network)/$(shell date +'%Y-%m-%d')-switch-to-permissioned-game PAUSE_SUPERCHAIN_CONFIG_DIR = $(network)/$(shell date +'%Y-%m-%d')-pause-superchain-config