File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ buildscript {
6
6
7
7
dependencies {
8
8
classpath ' com.palantir.jakartapackagealignment:jakarta-package-alignment:0.6.0'
9
- classpath ' com.palantir.gradle.jdks:gradle-jdks:0.67 .0'
10
- classpath ' com.palantir.gradle.jdkslatest:gradle-jdks-latest:0.19 .0'
9
+ classpath ' com.palantir.gradle.jdks:gradle-jdks:0.69 .0'
10
+ classpath ' com.palantir.gradle.jdkslatest:gradle-jdks-latest:0.20 .0'
11
11
classpath ' com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.19.0'
12
12
classpath ' com.palantir.gradle.failure-reports:gradle-failure-reports:1.14.0'
13
13
classpath ' com.palantir.javaformat:gradle-palantir-java-format:2.70.0'
Original file line number Diff line number Diff line change @@ -112,9 +112,9 @@ export ARCH
112
112
113
113
is_arch_os_supported () {
114
114
if [ " $OS " = " unsupported" ] || [ " $ARCH " = " unsupported" ]; then
115
- echo false
115
+ return 1 # false
116
116
fi
117
- echo true
117
+ return 0 # true
118
118
}
119
119
120
120
install_and_setup_jdks () {
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ APP_GRADLE_DIR="$APP_HOME"/gradle
67
67
# Loading gradle jdk functions
68
68
. " $APP_GRADLE_DIR " /gradle-jdks-functions.sh
69
69
70
- if ! $( is_arch_os_supported) ; then
70
+ if ! is_arch_os_supported; then
71
71
echo " Skipping Gradle JDKs Setup, Unsupported OS/Arch..."
72
72
cleanup
73
73
return
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ buildscript {
4
4
gradlePluginPortal()
5
5
}
6
6
dependencies {
7
- classpath ' com.palantir.gradle.jdks:gradle-jdks-settings:0.67 .0'
7
+ classpath ' com.palantir.gradle.jdks:gradle-jdks-settings:0.69 .0'
8
8
}
9
9
}
10
10
apply plugin : ' com.palantir.jdks.settings'
You can’t perform that action at this time.
0 commit comments