Definitely hack the planet and emoji fixes

This commit is contained in:
Luke Murphy 2020-04-11 21:28:22 +02:00
parent 7ee473c9b6
commit 0806b4e134
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 7 additions and 1 deletions

View File

@ -16,6 +16,9 @@ def autonomic(ctx):
| _ | | | | __/ _ \| '_ \ / _ \| '_ ` _ \| |/ __|
| | | | |_| | || (_) | | | | (_) | | | | | | | (__
\_| |_/\__,_|\__\___/|_| |_|\___/|_| |_| |_|_|\___|
Hack the planet!
""" # noqa
pass

View File

@ -27,6 +27,9 @@ def init(ctx):
install_dependencies()
ssh_sanity_check()
msg = "Hack the planet! :earth_africa:"
log.success(emojize(msg, use_aliases=True))
def create_configuration_directory():
"""Create toolbelt config directory."""
@ -83,7 +86,7 @@ def install_dependencies():
def ssh_sanity_check():
"""Try to recommend some SSH tips."""
if not is_proc("ssh-agent"):
msg = "ssh-agent is not running :confounded:"
msg = "ssh-agent is not running :sob:"
log.warning(emojize(msg, use_aliases=True))
else:
msg = "ssh-agent is running :rocket:"