From bcc84c429be630571bdcf042284435c353f22e27 Mon Sep 17 00:00:00 2001 From: Zane Bitter Date: Thu, 13 Mar 2025 12:30:45 +1300 Subject: [PATCH] Clone installer to correct directory --- 03_build_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_build_installer.sh b/03_build_installer.sh index 87f429b1a..7d14a362e 100755 --- a/03_build_installer.sh +++ b/03_build_installer.sh @@ -12,7 +12,7 @@ source validation.sh function clone_installer() { # Clone repo, if not already present if [[ ! -d $OPENSHIFT_INSTALL_PATH ]]; then - sync_repo_and_patch go/src/github.com/openshift/installer https://github.com/openshift/installer.git + sync_repo_and_patch "$(realpath -m --relative-to "${REPO_PATH:-$HOME}" "${OPENSHIFT_INSTALL_PATH}")" https://github.com/openshift/installer.git fi }