aboutsummaryrefslogtreecommitdiffstats
path: root/src/gitjoe/addsshkey.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/gitjoe/addsshkey.pl')
-rwxr-xr-xsrc/gitjoe/addsshkey.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gitjoe/addsshkey.pl b/src/gitjoe/addsshkey.pl
index d7e0477..c25c879 100755
--- a/src/gitjoe/addsshkey.pl
+++ b/src/gitjoe/addsshkey.pl
@@ -20,6 +20,7 @@ sub main {
open(my $fh, '>>:encoding(UTF-8)', $home_dir . '.ssh/authorized_keys');
print $fh "$sshkey\n";
close($fh);
+ print "Added new ssh key for user " . colored($usr, 'bold green') . ".\n";
exit;
}