Skip to content

Commit 2781189

Browse files
committed
Remove self-extracting JAR for Win from build pipeline
1 parent 57510f8 commit 2781189

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/scripts/sign-exe-in-zip-file.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ cd ${destination_folder_name}
2424
zip -r -q ../$file .
2525
cd ..
2626
echo "Successfully zipped ${destination_folder_name} into ${file}"
27-
java -jar $self_extr_jar $file
27+
#java -jar $self_extr_jar $file
2828
echo "Remove temporary ${destination_folder_name}"
2929
rm -rf ./${destination_folder_name}
3030

3131
echo "Creating checksums sha-256 and md5 for ${file}"
3232
shasum -a 256 $file > ${file}.sha256
3333
md5sum $file > ${file}.md5
34-
self_jar_file=${file%.*}.self-extracting.jar
35-
echo "Creating checksums sha-256 and md5 for ${self_jar_file}"
36-
shasum -a 256 $self_jar_file > ${self_jar_file}.sha256
37-
md5sum $self_jar_file > ${self_jar_file}.md5
34+
#self_jar_file=${file%.*}.self-extracting.jar
35+
#echo "Creating checksums sha-256 and md5 for ${self_jar_file}"
36+
#shasum -a 256 $self_jar_file > ${self_jar_file}.sha256
37+
#md5sum $self_jar_file > ${self_jar_file}.md5

0 commit comments

Comments
 (0)