mirror of
https://github.com/corda/corda.git
synced 2025-03-21 11:35:57 +00:00
Add a SKIP_BUILD option to the demo scripts
This commit is contained in:
parent
f6ef1c8071
commit
40f43fd7c8
@ -7,7 +7,7 @@ if [ ! -e ./gradlew ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -d build/install/r3prototyping ]; then
|
||||
if [ ! -d build/install/r3prototyping ] && [[ "$SKIP_INSTALL" == "" ]]; then
|
||||
./gradlew installDist
|
||||
fi
|
||||
|
||||
|
@ -7,7 +7,9 @@ if [ ! -e ./gradlew ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
./gradlew installDist
|
||||
if [[ "$SKIP_INSTALL" == "" ]]; then
|
||||
./gradlew installDist
|
||||
fi
|
||||
|
||||
if [[ "$mode" == "buyer" ]]; then
|
||||
if [ ! -d buyer ]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user