[R-gregmisc-users] SF.net SVN: r-gregmisc:[1467] trunk/gdata/R/xlsFormats.R
Brought to you by:
warnes
From: <wa...@us...> - 2011-04-15 19:44:01
|
Revision: 1467 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1467&view=rev Author: warnes Date: 2011-04-15 19:43:55 +0000 (Fri, 15 Apr 2011) Log Message: ----------- Fix error in xlsFormat() on windows when R or Perl install path includes spaces by quoting the path. Modified Paths: -------------- trunk/gdata/R/xlsFormats.R Modified: trunk/gdata/R/xlsFormats.R =================================================================== --- trunk/gdata/R/xlsFormats.R 2011-01-16 22:17:17 UTC (rev 1466) +++ trunk/gdata/R/xlsFormats.R 2011-04-15 19:43:55 UTC (rev 1467) @@ -24,7 +24,7 @@ ## ## execution command - cmd <- paste(perl, sc, sep=" ") + cmd <- paste(shQuote(perl), shQuote(sc), sep=" ") ## This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |