Skip to content

Commit d0b3bcd

Browse files
committed
fix: can't omit MULTISIG env var
1 parent d54d4a1 commit d0b3bcd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

contracts/scripts/upgrade_aligned_contracts.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/bash
22

3+
if [ -z "$MULTISIG" ]; then
4+
echo "Missing MULTISIG env variable"
5+
exit 1
6+
fi
7+
38
# cd to the directory of this script so that this can be run from anywhere
49
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
510

0 commit comments

Comments
 (0)