| ... | ... |
@@ -32,7 +32,7 @@ os::provision::build-etcd() {
|
| 32 | 32 |
local origin_root=$1 |
| 33 | 33 |
local skip_build=$2 |
| 34 | 34 |
|
| 35 |
- if [[ -f "${origin_root}/_tools/etcd/bin/etcd" &&
|
|
| 35 |
+ if [[ -f "${origin_root}/_output/tools/etcd/bin/etcd" &&
|
|
| 36 | 36 |
"${skip_build}" = "true" ]]; then
|
| 37 | 37 |
echo "WARNING: Skipping etcd build due to OPENSHIFT_SKIP_BUILD=true" |
| 38 | 38 |
# Etcd is required for integration testing which isn't a use case |
| ... | ... |
@@ -12,8 +12,8 @@ os::log::stacktrace::install |
| 12 | 12 |
|
| 13 | 13 |
etcd_version=$(go run ${OS_ROOT}/tools/godepversion/godepversion.go ${OS_ROOT}/Godeps/Godeps.json github.com/coreos/etcd/etcdserver)
|
| 14 | 14 |
|
| 15 |
-mkdir -p "${OS_ROOT}/_tools"
|
|
| 16 |
-cd "${OS_ROOT}/_tools"
|
|
| 15 |
+mkdir -p "${OS_ROOT}/_output/tools"
|
|
| 16 |
+cd "${OS_ROOT}/_output/tools"
|
|
| 17 | 17 |
|
| 18 | 18 |
if [ ! -d etcd ]; then |
| 19 | 19 |
mkdir -p etcd |