You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by ke...@apache.org on 2007/02/18 05:59:28 UTC

svn commit: r508866 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHExec.java

Author: kevj
Date: Sat Feb 17 20:59:27 2007
New Revision: 508866

URL: http://svn.apache.org/viewvc?view=rev&rev=508866
Log:
-fix error message

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHExec.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHExec.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHExec.java?view=diff&rev=508866&r1=508865&r2=508866
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHExec.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHExec.java Sat Feb 17 20:59:27 2007
@@ -145,7 +145,7 @@
             throw new BuildException("Password or Keyfile is required.");
         }
         if (command == null && commandResource == null) {
-            throw new BuildException("Command or commandFile is required.");
+            throw new BuildException("Command or commandResource is required.");
         }
 
         /* called once */



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org