From 95c5783bd88a37acee26084926f5fe2c73ff0035 Mon Sep 17 00:00:00 2001 From: Oleksandr Karpovich Date: Thu, 21 Apr 2022 10:25:02 +0200 Subject: [PATCH] pass -Pkotlin.version=$KOTLIN_VERSION in validateExamples.sh It was ignored previously. --- examples/validateExamples.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/validateExamples.sh b/examples/validateExamples.sh index 2cd7a15010..c970e81e66 100755 --- a/examples/validateExamples.sh +++ b/examples/validateExamples.sh @@ -15,7 +15,7 @@ KOTLIN_VERSION=$2 runGradle() { pushd $1 - ./gradlew $2 -Pcompose.version=$COMPOSE_VERSION + ./gradlew $2 -Pcompose.version=$COMPOSE_VERSION -Pkotlin.version=$KOTLIN_VERSION popd }