Skip to content
This repository was archived by the owner on Jan 9, 2026. It is now read-only.

Commit c1337b1

Browse files
committed
fix
1 parent 16c1bd4 commit c1337b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/runner/functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ if [[ "${CONTINUE_SBUILD}" == "YES" ]]; then
382382
find "${SBUILD_OUTDIR}" -type f -exec sudo chmod +xwr "{}" \; 2>/dev/null
383383
unset ARTIFACTS_DIR ; ARTIFACTS_DIR="$(find "${SBUILD_OUTDIR}/BUILD" -name "SBUILD" -type f -exec dirname "{}" \; | xargs realpath | head -n 1 | tr -d '[:space:]')"
384384
if [ -d "${ARTIFACTS_DIR}" ] && [ $(du -s "${ARTIFACTS_DIR}" | cut -f1) -gt 10 ]; then
385-
find -L "${ARTIFACTS_DIR}" -xtype l | awk '{
385+
find -L "${ARTIFACTS_DIR}" -xtype l 2>/dev/null | awk '{
386386
link=$0;
387387
cmd="readlink \""link"\"";
388388
cmd | getline target;

0 commit comments

Comments
 (0)