Merge pull request #5072 from tianon/hack-set-e-consistently

Update bundlescripts to use "set -e" consistently
Upstream-commit: 28e7e814795fce2a75e4767a6707a6e4d03fa8b6
Component: engine
This commit is contained in:
Tianon Gravi
2014-04-10 13:37:36 -06:00
9 changed files with 9 additions and 10 deletions
+1
View File
@@ -1,4 +1,5 @@
#!/bin/bash
set -e
DEST=$1
+1
View File
@@ -1,4 +1,5 @@
#!/bin/bash
set -e
DEST="$1"
+1
View File
@@ -1,4 +1,5 @@
#!/bin/bash
set -e
DEST=$1
+1
View File
@@ -1,4 +1,5 @@
#!/bin/bash
set -e
DEST=$1
+1 -2
View File
@@ -1,10 +1,9 @@
#!/bin/bash
set -e
DEST=$1
INIT=$DEST/../dynbinary/dockerinit-$VERSION
set -e
if [ ! -x "$INIT" ]; then
echo >&2 'error: dynbinary must be run before dyntest'
false
@@ -1,10 +1,9 @@
#!/bin/bash
set -e
DEST=$1
INIT=$DEST/../dynbinary/dockerinit-$VERSION
set -e
if [ ! -x "$INIT" ]; then
echo >&2 'error: dynbinary must be run before dyntest-integration'
false
+1 -2
View File
@@ -1,9 +1,8 @@
#!/bin/bash
set -e
DEST=$1
set -e
RED=$'\033[31m'
GREEN=$'\033[32m'
TEXTRESET=$'\033[0m' # reset the foreground colour
+1 -2
View File
@@ -1,9 +1,8 @@
#!/bin/bash
set -e
DEST=$1
set -e
bundle_test_integration() {
LDFLAGS="$LDFLAGS $LDFLAGS_STATIC_DOCKER" go_test_dir ./integration \
"-coverpkg $(find_dirs '*.go' | sed 's,^\.,github.com/dotcloud/docker,g' | paste -d, -s)"
@@ -1,9 +1,8 @@
#!/bin/bash
set -e
DEST=$1
set -e
DOCKER_GRAPHDRIVER=${DOCKER_GRAPHDRIVER:-vfs}
DOCKER_EXECDRIVER=${DOCKER_EXECDRIVER:-native}