Skip to content

Commit cd9277c

Browse files
committed
remove set -e for zsh terminal
1 parent 52701d5 commit cd9277c

File tree

5 files changed

+2
-5
lines changed

5 files changed

+2
-5
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ source script/deploy-contracts.sh
264264
Deploy the compiled component with the contract information from the previous steps. Review the [makefile](./Makefile) for more details and configuration options.`TRIGGER_EVENT` is the event that the trigger contract emits and WAVS watches for. By altering `SERVICE_TRIGGER_ADDR` you can watch events for contracts others have deployed.
265265
266266
```bash docci-delay-per-cmd=3
267-
268267
export COMPONENT_FILENAME=evm_price_oracle.wasm
269268
export PKG_NAME="evmrustoracle"
270269
export PKG_VERSION="0.1.0"

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)