diff options
-rwxr-xr-x | bin/reproducible_build.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 76d6dbdc..35014302 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -246,7 +246,9 @@ handle_ftbfs() { local BUILD echo "${SRCPACKAGE} failed to build from source." for BUILD in "1" "2"; do - local node="NODE$BUILD" + local nodevar="NODE$BUILD" + local node="" + eval node=\$$nodevar if [ ! -f "$DEBIAN_BASE/logs/$SUITE/$ARCH/${SRCPACKAGE}_${EVERSION}.build${BUILD}.log.gz" ] ; then continue fi |