From bdcf84083356a59944a744e99bc5bf5a6edfc4ae Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 3 Apr 2023 20:04:49 +0000 Subject: [PATCH] new commit --- PepDeb_arm64/BldHelper-release.sh | 3 +++ PepDev64/BldHelper-release.sh | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/PepDeb_arm64/BldHelper-release.sh b/PepDeb_arm64/BldHelper-release.sh index fc49b20..59ab9db 100755 --- a/PepDeb_arm64/BldHelper-release.sh +++ b/PepDeb_arm64/BldHelper-release.sh @@ -25,6 +25,9 @@ _cache="./cache" _break=0 ; _wait=30 # Time (in seconds) to wait cd ${WorkingDir} +# Run the build script. +./pepbld.sh 2>&1 | tee -a ${OutFile} + # Timing matters, don't destroy the old one without a replacement. # Check for the ISO to appear and wait for things to settle. diff --git a/PepDev64/BldHelper-release.sh b/PepDev64/BldHelper-release.sh index d63e524..16757f5 100755 --- a/PepDev64/BldHelper-release.sh +++ b/PepDev64/BldHelper-release.sh @@ -23,9 +23,10 @@ OutFile="/tmp/${PREFIX}${SUFFIX}.out" LogFile="${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log" _cache="./cache" _break=0 ; _wait=30 # Time (in seconds) to wait +cd ${WorkingDir} # Run the build script. - ./pepbld.sh 2>&1 | tee -a ${OutFile} +./pepbld.sh 2>&1 | tee -a ${OutFile} # Timing matters, don't destroy the old one without a replacement.