Browse Source
* Fix components script compilation * Add script to run Gradle with Compose properties set up It's useful for running a single task in the included Compose build. * Set default JVM target to 11 if it is lower * Update Compose submodulepull/1703/head
Alexey Tsvetkov
3 years ago
committed by
GitHub
6 changed files with 29 additions and 32 deletions
@ -1 +1 @@ |
|||||||
Subproject commit fe220467abcf2368966a051b732752513ffeceda |
Subproject commit 3ebf1d446089cc8da34bb1b906982327af7b8249 |
@ -0,0 +1,8 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
cd "$(dirname "$0")" |
||||||
|
. ./prepare |
||||||
|
|
||||||
|
pushd .. |
||||||
|
./gradlew $COMPOSE_DEFAULT_GRADLE_ARGS "$@" || exit 1 |
||||||
|
popd |
Loading…
Reference in new issue