Merge pull request #114 from corda/clint-windowsrunnodesfix

Windows runnodes.bat now works from any working directory
This commit is contained in:
Clinton 2017-01-05 18:19:54 +00:00 committed by GitHub
commit a636ae527b
2 changed files with 7 additions and 2 deletions

View File

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

View File

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