Link to website to encourage users to report bugs.
This commit is contained in:
parent
e466732bbf
commit
1200420687
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue