From 47bb4cbbe563314cdc26721f22fcfc24c4c23687 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 30 Dec 2021 05:41:20 -0500 Subject: [PATCH] Run buildiso.sh with a full path --- buildpxe.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildpxe.sh b/buildpxe.sh index 5c33e46..3af9aa5 100755 --- a/buildpxe.sh +++ b/buildpxe.sh @@ -79,8 +79,9 @@ fail() { } build_iso() { + idir=$( dirname $0 ) if [[ ! -f pvc-installer_pxe-tmp.iso ]]; then - ./buildiso.sh \ + ${idir}/buildiso.sh \ -o pvc-installer_pxe-tmp.iso \ -u ${deployusername} \ ${preserve_artifacts} \