From: Marko Luukkainen Date: Thu, 18 Aug 2022 06:17:43 +0000 (+0000) Subject: Merge "Exporting TG files creates temporary files without removing them." into releas... X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=commitdiff_plain;h=a472ceaa29534d553e2af893e268b6a13bffa441;hp=ca0f4eb1114af9a04ee46dcd8626132f0dff786d;p=simantics%2Fplatform.git Merge "Exporting TG files creates temporary files without removing them." into release/1.43.1 --- diff --git a/releng/org.simantics.sdk.build.p2.site/sign.sh b/releng/org.simantics.sdk.build.p2.site/sign.sh index 79319ec43..558151988 100755 --- a/releng/org.simantics.sdk.build.p2.site/sign.sh +++ b/releng/org.simantics.sdk.build.p2.site/sign.sh @@ -8,7 +8,6 @@ if [ $# -lt 3 ]; then echo " must contain the following properties:" echo " jarsigner.alias: keystore entry alias" echo " jarsigner.storepass: password for the keystore" - echo " jarsigner.keypass: password for the key " echo "" echo " can be empty is timestamping is not desired." exit -1 @@ -30,7 +29,6 @@ echo "TSA URL: ${tsa}" keyalias=$(signprop 'jarsigner.alias') storepass=$(signprop 'jarsigner.storepass') -keypass=$(signprop 'jarsigner.keypass') for jar in `find "${dir}/target/repository/plugins/" -type f -not -ipath '*.source_*.jar'`; do echo "----" @@ -38,7 +36,6 @@ for jar in `find "${dir}/target/repository/plugins/" -type f -not -ipath '*.sour echo "Signing $jar" jarsigner -keystore "${keystore}" \ -storepass ${storepass} \ - -keypass ${keypass} \ -verbose \ "$jar" \ ${keyalias} @@ -46,7 +43,6 @@ for jar in `find "${dir}/target/repository/plugins/" -type f -not -ipath '*.sour echo "Signing and timestamping $jar" jarsigner -keystore "${keystore}" \ -storepass ${storepass} \ - -keypass ${keypass} \ -verbose \ -tsa "${tsa}" \ "$jar" \