We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900a24f commit 68fe124Copy full SHA for 68fe124
build-distributions.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash
2
3
+export JAVA_HOME=/usr/lib/jvm/java-24-openjdk/
4
+
5
rm distributions/*
6
7
echo -n Private key password:
@@ -17,7 +19,7 @@ DISTRIBUTIONS="IC"
17
19
for TARGET_IDE in ${DISTRIBUTIONS}; do
18
20
echo Trying to build $TARGET_IDE
21
export TARGET_IDE=$TARGET_IDE
- ./gradlew clean signPlugin verifyPlugin buildPlugin || ./gradlew signPlugin verifyPlugin buildPlugin || exit
22
+ ./gradlew clean signPlugin buildPlugin || ./gradlew signPlugin buildPlugin || exit
23
FILE=$(expandedName)
24
NEW_FILE=$(basename ${FILE%.*}-$TARGET_IDE.zip)
25
cp "$FILE" distributions/$NEW_FILE
0 commit comments