diff options
| author | Tianon Gravi <admwiggin@gmail.com> | 2014-04-07 22:14:19 -0600 |
|---|---|---|
| committer | Tianon Gravi <admwiggin@gmail.com> | 2014-04-09 12:11:06 -0600 |
| commit | b298960aed8155e7dbedb6602cdbb42eacee83f7 (patch) | |
| tree | 4af308a6ac1b564ccf8b64a24eefbf3b29382801 /hack/make/test-integration-cli | |
| parent | 7c37cae17d675aa72a2146e881aaa7e30f8d291e (diff) | |
| download | docker-b298960aed8155e7dbedb6602cdbb42eacee83f7.tar.gz | |
Update bundlescripts to use "set -e" consistently
"set -e" is already inherited here from make.sh, but explicit is always better than implicit (hence the "set -e" in the first place!)
Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
Diffstat (limited to 'hack/make/test-integration-cli')
| -rw-r--r-- | hack/make/test-integration-cli | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hack/make/test-integration-cli b/hack/make/test-integration-cli index b0506d261a..6e8b38892e 100644 --- a/hack/make/test-integration-cli +++ b/hack/make/test-integration-cli @@ -1,9 +1,8 @@ #!/bin/bash +set -e DEST=$1 -set -e - DOCKER_GRAPHDRIVER=${DOCKER_GRAPHDRIVER:-vfs} DOCKER_EXECDRIVER=${DOCKER_EXECDRIVER:-native} |
