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 {
my ($format, @args) = @_;
die "$ProgramName: INTERNAL ERROR: " . sprintf($format, @args) . "\n",
"This _is_ a bug. Please submit a bug report so we can fix it:-)\n";
my $error = sprintf($format, @args);
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