This commit is contained in:
Thomas Levine 2016-02-29 00:41:03 +00:00
parent 5ee0771f2b
commit a94d04b136
1 changed files with 6 additions and 1 deletions

7
urchin
View File

@ -228,7 +228,12 @@ report_outcome() {
# Use a temporary file rather than a pipe because a pipe starts a sub-shell
# and thus makes the above variables local.
sorted_log_file=$(mktemp)
sort "$log_file" > $sorted_log_file
# Sort in alphabetical order.
# GNU sort requires -m, and BSD sort doesn't.
sort -m "$log_file" > $sorted_log_file ||
sort "$log_file" > $sorted_log_file
while read line; do
abspath=$(echo "$line" | cut -f1)
path=$(echo "$abspath" | sed "s/$escaped_root\/\?//")