From 982614e3c123c6aca2cb9641d3a48d21fb2770a0 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:41:59 -0400 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} \