runnodes.bat can now run the nodes from any working directory and not cause an infinite loop and system crash.

This commit is contained in:
Clinton Alexander 2017-01-05 15:57:32 +00:00
parent 08e391579c
commit 857de9df49
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
@echo off
REM Change to the directory of this script
cd /d %~dp0
FOR /R ".\" %%G in (.) DO (
Pushd %%G
start java -jar corda.jar

View File

@ -1 +1 @@
gradlePluginsVersion=0.6.3
gradlePluginsVersion=0.6.4