Skip to content

Commit 643ab6c

Browse files
committed
scripts/auto-bootstraps/process_uploads: allow processing of temp files too
Signed-off-by: Fabian Groffen <[email protected]>
1 parent f6acc1e commit 643ab6c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/auto-bootstraps/process_uploads.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,10 @@ for d in "${UPLOADDIR}"/* ; do
6262
mkdir -p "${RESULTSDIR}/${w}"
6363
[[ -e "${pkg}"/build-info ]] && \
6464
mv "${pkg}"/build-info "${RESULTSDIR}/${w}"/
65-
[[ -e "${pkg}"/temp ]] && \
65+
if [[ -e "${pkg}"/temp ]] ; then
6666
mv "${pkg}"/temp "${RESULTSDIR}/${w}"/
67+
process_file "${RESULTSDIR}/${w}"/temp
68+
fi
6769
done
6870
fi
6971
chmod -R o+rX,go-w "${RESULTSDIR}/${dir}"

0 commit comments

Comments
 (0)