Link to website to encourage users to report bugs.

This commit is contained in:
Adam Spiers 2012-01-09 17:52:11 +00:00
parent e466732bbf
commit 1200420687

View file

@ -1963,8 +1963,12 @@ sub do_rmdir {
#============================================================================ #============================================================================
sub internal_error { sub internal_error {
my ($format, @args) = @_; my ($format, @args) = @_;
die "$ProgramName: INTERNAL ERROR: " . sprintf($format, @args) . "\n", my $error = sprintf($format, @args);
"This _is_ a bug. Please submit a bug report so we can fix it:-)\n"; die <<EOF;
$ProgramName: INTERNAL ERROR: $error
This _is_ a bug. Please submit a bug report so we can fix it! :-)
See http://www.gnu.org/software/stow/ for how to do this.
EOF
} }
=head1 BUGS =head1 BUGS