mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Add ignored file. Print module error info to stderr, not stdout.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3863 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
4f878ffa31
commit
1b9f95a7d1
@ -1,4 +1,5 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
finance-quote-helper
|
||||
update-finance-quote
|
||||
histprices
|
||||
|
@ -107,14 +107,14 @@ sub check_modules {
|
||||
|
||||
return unless @missing;
|
||||
|
||||
print "\n";
|
||||
print "You need to install the following Perl modules:\n";
|
||||
print STDERR "\n";
|
||||
print STDERR "You need to install the following Perl modules:\n";
|
||||
foreach my $mod (@missing) {
|
||||
print " ".$mod."\n";
|
||||
print STDERR " ".$mod."\n";
|
||||
}
|
||||
|
||||
print "\n";
|
||||
print "Run 'update-finance-quote' as root to install them.\n";
|
||||
print STDERR "\n";
|
||||
print STDERR "Run 'update-finance-quote' as root to install them.\n";
|
||||
|
||||
exit 1
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user