|
From: <caw...@us...> - 2007-08-09 12:41:27
|
Revision: 2943
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=2943&view=rev
Author: cawilliams
Date: 2007-08-09 05:41:26 -0700 (Thu, 09 Aug 2007)
Log Message:
-----------
move stream flush script to it's own directory to further try to minimze possibility of having added it's folder to loadpath from causing filename load collisions.
Modified Paths:
--------------
trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java
Modified: trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java
===================================================================
--- trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java 2007-08-09 12:37:48 UTC (rev 2942)
+++ trunk/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java 2007-08-09 12:41:26 UTC (rev 2943)
@@ -110,7 +110,7 @@
buffer.append(" -I ");
if (Platform.getOS().equals(Platform.OS_WIN32))
buffer.append("\"");
- buffer.append(LaunchingPlugin.getFileInPlugin(new Path("ruby").append(StandardVMRunner.STREAM_FLUSH_SCRIPT)).getParent());
+ buffer.append(LaunchingPlugin.getFileInPlugin(new Path("ruby").append("flush").append(StandardVMRunner.STREAM_FLUSH_SCRIPT)).getParent());
if (Platform.getOS().equals(Platform.OS_WIN32))
buffer.append("\"");
buffer.append(" -r" + StandardVMRunner.STREAM_FLUSH_SCRIPT);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|