Author: [EMAIL PROTECTED]
Date: Fri Sep 19 23:17:29 2008
New Revision: 3670
Modified:
trunk/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java
Log:
Fix for r3669, because our build machine (and untold others in the wider
world) have an old copy of svnversion, which demands a workspace-directory
argument.
TBR: scottb
Modified:
trunk/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java
==============================================================================
--- trunk/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java
(original)
+++ trunk/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java
Fri Sep 19 23:17:29 2008
@@ -123,7 +123,7 @@
private String getSvnVersion(File workdir) {
String line = null;
- LineNumberReader svnout = runCommand(workdir, "svnversion");
+ LineNumberReader svnout = runCommand(workdir, "svnversion", ".");
try {
line = svnout.readLine();
} catch (IOException e) {
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---