Skip to content

Commit 5f843bf

Browse files
authored
remove set -e for zsh terminal (#207)
1 parent 5d1d4a5 commit 5f843bf

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

script/build-service.sh

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

3-
set -e
43
# set -x
54

65
: '''

script/create-aggregator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/bash
2-
set -e
2+
33
# set -x
44

55
# have an optional argument $1, if set, use it as the agg index

script/create-operator.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
# set -e
32

43
SP=""; if [[ "$(uname)" == *"Darwin"* ]]; then SP=" "; fi
54

script/deploy-contracts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ -z "$WAVS_SERVICE_MANAGER_ADDRESS" ]; then
66
export WAVS_SERVICE_MANAGER_ADDRESS=$(jq -r '.addresses.WavsServiceManager' .nodes/avs_deploy.json)
77
else
88
echo "WAVS_SERVICE_MANAGER_ADDRESS is not set."
9-
exit 1
9+
return
1010
fi
1111
fi
1212

0 commit comments

Comments
 (0)