mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-04-12 08:11:22 +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
|