provision: Add build_emoji prefix to message.

This is similar to what we do in generate_secrets,
and it makes the output from a no-op provision
a bit more consistent.
This commit is contained in:
Steve Howell 2020-04-16 13:22:56 +00:00 committed by Tim Abbott
parent 478b50dde3
commit f98843d197
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ def main() -> None:
with open(success_stamp, 'w') as f:
f.close()
print("Using cached emojis from {}".format(source_emoji_dump))
print("build_emoji: Using cached emojis from {}".format(source_emoji_dump))
if os.path.lexists(TARGET_EMOJI_DUMP):
os.remove(TARGET_EMOJI_DUMP)
os.symlink(source_emoji_dump, TARGET_EMOJI_DUMP)