mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-05-08 08:11:20 +00:00
* 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
8 lines
114 B
Bash
Executable File
8 lines
114 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
. ./prepare
|
|
|
|
pushd ..
|
|
./gradlew $COMPOSE_DEFAULT_GRADLE_ARGS "$@" || exit 1
|
|
popd |