Skip to content
This repository was archived by the owner on Aug 2, 2019. It is now read-only.

Commit 95b8a00

Browse files
authored
Merge pull request #28 from vorburger/patch-1
use set -ex in install-on-minishift.sh
2 parents 89e29d2 + cf58d64 commit 95b8a00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

etc/scripts/install-on-minishift.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ if minishift status | head -1 | grep "Running" >/dev/null; then
99
exit 1
1010
fi
1111

12-
set -x
12+
set -ex
1313

1414
OPENSHIFT_VERSION=${OPENSHIFT_VERSION:-v3.11.0}
1515
MEMORY=${MEMORY:-10GB}
1616
CPUS=${CPUS:-4}
1717
DISK_SIZE=${DISK_SIZE:-50g}
1818

1919
# blow away everything in the knative profile
20-
minishift profile delete knative --force
20+
minishift profile delete knative --force || true
2121

2222
# configure knative profile
2323
minishift profile set knative

0 commit comments

Comments
 (0)