summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcron-jobs/sourceballs4
1 files changed, 3 insertions, 1 deletions
diff --git a/cron-jobs/sourceballs b/cron-jobs/sourceballs
index 03b8209..9509715 100755
--- a/cron-jobs/sourceballs
+++ b/cron-jobs/sourceballs
@@ -73,9 +73,11 @@ for repo in $repos; do
done
if [ -n "$FAILED_PKGS" ]; then
+ echo -e $FAILED_PKGS | sed "s| |\n|g" | sort -u > "$srcbase/failed.txt"
+
echo ""
echo "The following packages failed:"
- echo -e $FAILED_PKGS | sed "s| |\n\t|g" | sort -u
+ cat "$srcbase/failed.txt"
fi
cleanup