mirror of
https://github.com/corda/corda.git
synced 2024-12-22 06:17:55 +00:00
runnodes.bat returns the user to the original directory.
This commit is contained in:
parent
857de9df49
commit
b49c97d409
@ -1,10 +1,12 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
REM Change to the directory of this script
|
REM Change to the directory of this script (%~dp0)
|
||||||
cd /d %~dp0
|
Pushd %~dp0
|
||||||
|
|
||||||
FOR /R ".\" %%G in (.) DO (
|
FOR /R ".\" %%G in (.) DO (
|
||||||
Pushd %%G
|
Pushd %%G
|
||||||
start java -jar corda.jar
|
start java -jar corda.jar
|
||||||
Popd
|
Popd
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Popd
|
Loading…
Reference in New Issue
Block a user