mirror of https://github.com/zulip/zulip.git
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:
parent
478b50dde3
commit
f98843d197
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue