mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 15:48:51 +00:00
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
pushd ..
|
|
# used in https://github.com/JetBrains/androidx/tree/jb-main/.github/workflows
|
|
./gradlew testComposeModules testComposeJbDesktop $COMPOSE_DEFAULT_GRADLE_ARGS "$@" || exit 1
|
|
popd
|