Commit b2724d37 authored by Liam Horne's avatar Liam Horne Committed by GitHub

build: add set -e to various bash scripts that we want to error loudly (#718)

* build: add set -e to various bash scripts that we want to error loudly

* build: use sh and remove set -e for geth.sh
parent 9bbe8be5
#!/bin/bash #!/bin/bash
set -e
RETRIES=${RETRIES:-40} RETRIES=${RETRIES:-40}
if [[ ! -z "$URL" ]]; then if [[ ! -z "$URL" ]]; then
......
#!/bin/bash #!/bin/bash
set -e
RETRIES=${RETRIES:-60} RETRIES=${RETRIES:-60}
if [[ ! -z "$URL" ]]; then if [[ ! -z "$URL" ]]; then
......
#!/bin/bash #!/bin/sh
# FIXME: Cannot use set -e since bash is not installed in Dockerfile
# set -e
RETRIES=${RETRIES:-40} RETRIES=${RETRIES:-40}
VERBOSITY=${VERBOSITY:-6} VERBOSITY=${VERBOSITY:-6}
......
#!/bin/bash #!/bin/bash
set -e
RETRIES=${RETRIES:-60} RETRIES=${RETRIES:-60}
if [[ ! -z "$URL" ]]; then if [[ ! -z "$URL" ]]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment