You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/04/02 16:30:22 UTC

svn commit: r1308363 - /commons/proper/exec/trunk/src/test/scripts/ping.bat

Author: sebb
Date: Mon Apr  2 14:30:21 2012
New Revision: 1308363

URL: http://svn.apache.org/viewvc?rev=1308363&view=rev
Log:
Avoid recursive call to ping if invoked from same directory as ping.bat

Modified:
    commons/proper/exec/trunk/src/test/scripts/ping.bat

Modified: commons/proper/exec/trunk/src/test/scripts/ping.bat
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/test/scripts/ping.bat?rev=1308363&r1=1308362&r2=1308363&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/test/scripts/ping.bat (original)
+++ commons/proper/exec/trunk/src/test/scripts/ping.bat Mon Apr  2 14:30:21 2012
@@ -21,4 +21,4 @@ REM limitations under the License.
 REM ping is started as subprocess which runs '%1' seconds
 
 echo "[ping.bat] Blocking for %1 seconds ..."
-ping -n %1 -w 1000 127.0.0.1 > nul
\ No newline at end of file
+ping.exe -n %1 -w 1000 127.0.0.1 > nul
\ No newline at end of file