Skip to content

Commit

Permalink
scripts/auto-bootstraps/process_uploads: allow processing of temp fil…
Browse files Browse the repository at this point in the history
…es too

Signed-off-by: Fabian Groffen <grobian@gentoo.org>
  • Loading branch information
grobian committed Apr 2, 2024
1 parent f6acc1e commit 643ab6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/auto-bootstraps/process_uploads.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ for d in "${UPLOADDIR}"/* ; do
mkdir -p "${RESULTSDIR}/${w}"
[[ -e "${pkg}"/build-info ]] && \
mv "${pkg}"/build-info "${RESULTSDIR}/${w}"/
[[ -e "${pkg}"/temp ]] && \
if [[ -e "${pkg}"/temp ]] ; then
mv "${pkg}"/temp "${RESULTSDIR}/${w}"/
process_file "${RESULTSDIR}/${w}"/temp
fi
done
fi
chmod -R o+rX,go-w "${RESULTSDIR}/${dir}"
Expand Down

0 comments on commit 643ab6c

Please sign in to comment.