Skip to content

Commit

Permalink
Merge pull request openshift#204 from danwinship/fix-run-locally-open…
Browse files Browse the repository at this point in the history
…shift-install

run-locally.sh: fix name of openshift-install binary in test
  • Loading branch information
openshift-merge-robot committed Jun 18, 2019
2 parents 2d8bfa5 + a293fb3 commit b17f6c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/run-locally.sh
Expand Up @@ -255,9 +255,9 @@ if [[ -z "$(ls -A ${CLUSTER_DIR} 2> /dev/null | grep -v install-config.yaml | gr

# Find openshift-install if not explicitly given
if [[ -z "${INSTALLER_PATH}" ]]; then
INSTALLER_PATH="$(which openshift-installer 2> /dev/null || exit 0)"
INSTALLER_PATH="$(which openshift-install 2> /dev/null || exit 0)"
if [[ -z "${INSTALLER_PATH}" ]]; then
echo "could not find openshift-installer in PATH for building a new cluster" >&2
echo "could not find openshift-install in PATH for building a new cluster" >&2
exit 1
fi
fi
Expand Down

0 comments on commit b17f6c4

Please sign in to comment.