Files
compose-multiplatform/compose/scripts/runGradle
Alexey Tsvetkov f3a403b321 Additional CI fixes (#1696)
* 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 submodule
2022-01-14 20:19:53 +03:00

8 lines
114 B
Bash
Executable File

#!/bin/bash
cd "$(dirname "$0")"
. ./prepare
pushd ..
./gradlew $COMPOSE_DEFAULT_GRADLE_ARGS "$@" || exit 1
popd