[R-gregmisc-users] SF.net SVN: r-gregmisc:[1964] trunk/gdata/inst/perl/xls2csv.pl
Brought to you by:
warnes
|
From: <wa...@us...> - 2015-04-25 08:49:48
|
Revision: 1964
http://sourceforge.net/p/r-gregmisc/code/1964
Author: warnes
Date: 2015-04-25 08:49:41 +0000 (Sat, 25 Apr 2015)
Log Message:
-----------
Error message about executable name was missing one alternative
Modified Paths:
--------------
trunk/gdata/inst/perl/xls2csv.pl
Modified: trunk/gdata/inst/perl/xls2csv.pl
===================================================================
--- trunk/gdata/inst/perl/xls2csv.pl 2015-04-25 07:59:03 UTC (rev 1963)
+++ trunk/gdata/inst/perl/xls2csv.pl 2015-04-25 08:49:41 UTC (rev 1964)
@@ -1,9 +1,9 @@
#!/usr/bin/perl
BEGIN {
-use File::Basename;
-# Add current path to perl library search path
-use lib dirname($0);
+ use File::Basename;
+ # Add current path to perl library search path
+ use lib dirname($0);
}
use strict;
@@ -61,7 +61,7 @@
}
else
{
- die("This script is named '$whoami', but must be named either 'xls2csv.pl' or 'xls2tab.pl' to function properly.\n");
+ die("This script is named '$whoami', but must be named 'xls2csv.pl', 'xls2tsv', or 'xls2tab.pl' to function properly.\n");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|