DEV: Avoid emoji for symbols

Rake task needs to work across a wide variety of terminal emulators.
Requiring an emoji font is superflous.
This commit is contained in:
Sam Saffron 2019-07-05 09:40:56 +10:00
parent 1318e0b288
commit b9a2a4d904
1 changed files with 5 additions and 5 deletions

View File

@ -717,18 +717,18 @@ def correct_inline_uploads
puts Diffy::Diff.new(PrettyText.cook(post.raw), PrettyText.cook(new_raw), context: 1)
puts
elsif dry_run
putc "🏃"
putc "#"
else
putc "🆗"
putc "."
end
fixed_count += 1
else
putc ""
putc "X"
not_corrected_post_ids << post.id
end
rescue => e
putc "🚫"
rescue
putc "!"
failed_to_correct_post_ids << post.id
end
end