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/binary | |
| 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/binary')
| -rwxr-xr-x | hack/make/binary | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hack/make/binary b/hack/make/binary index 041e4d1ee8..b97069a856 100755 --- a/hack/make/binary +++ b/hack/make/binary @@ -1,4 +1,5 @@ #!/bin/bash +set -e DEST=$1 |
