diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2011-04-20 22:28:13 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2011-04-20 22:28:13 -0700 |
commit | 156639106697e3ed028e7a6df1bc6dc6d4a47b1c (patch) | |
tree | d02ac5c55cc30b5ca2118e3847d97c32560f7ac2 /libpiny/lib | |
parent | d2977669bb388de0a991af6548427e896550e646 (diff) | |
download | piny-code-156639106697e3ed028e7a6df1bc6dc6d4a47b1c.tar.gz piny-code-156639106697e3ed028e7a6df1bc6dc6d4a47b1c.zip |
joe is a whiny baby who wants a better error message.
Diffstat (limited to 'libpiny/lib')
-rw-r--r-- | libpiny/lib/Piny/User.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpiny/lib/Piny/User.pm b/libpiny/lib/Piny/User.pm index aa01ba7..780a698 100644 --- a/libpiny/lib/Piny/User.pm +++ b/libpiny/lib/Piny/User.pm @@ -211,7 +211,7 @@ sub _build_email { my ( $s ) = @_; if ( not defined $s->config->user_email ) { - die "You must provide a user.email attribute in your .gitconfig!"; + die "You must provide a user.email attribute in your .gitconfig!\nPlease run pinyconfig --user user.email your\@email.com"; }; return Piny::Email->new( address => $s->config->user_email ); |