Skip to content

Commit

Permalink
Merge pull request #1998 from MushroomObserver/fix-bug-in-parse-log
Browse files Browse the repository at this point in the history
Oops again.
  • Loading branch information
pellaea committed Mar 6, 2024
2 parents 824527f + 443fe64 commit 1b80c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/parse_log
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ grep -v 'ActionView::Template::Error .Character not in alphabet' \

touch $old_errors
(diff $new_errors $old_errors || true) |
grep -v '^<' | sed 's/^< //' | $app_root/script/extract_log
grep '^<' | sed 's/^< //' | $app_root/script/extract_log
mv $new_errors $old_errors

exit 0

0 comments on commit 1b80c57

Please sign in to comment.