Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2020-10-28 03:44:52 +0000
committerSravan Kumar Lakkimsetti2020-10-28 03:44:52 +0000
commit1f3335b7bedd1114eac74f5061741740b76a9301 (patch)
tree5275424ab3bfc7c30464cbe526b327bb0bc47808
parent317671d42757eff806794dc8429dd2eeb6393422 (diff)
downloadeclipse.platform.releng.aggregator-1f3335b7bedd1114eac74f5061741740b76a9301.tar.gz
eclipse.platform.releng.aggregator-1f3335b7bedd1114eac74f5061741740b76a9301.tar.xz
eclipse.platform.releng.aggregator-1f3335b7bedd1114eac74f5061741740b76a9301.zip
Bug 560258 - Gpg sign checksums on new infra buildI20201028-0020I20201027-2350
- removed importing of gpg keys from equinox publishing code Change-Id: If50fda35a654c6b18e3c3e98bf2d77ef053b6cf3 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rwxr-xr-xcje-production/mbscripts/mb310_gatherEquinoxParts.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/cje-production/mbscripts/mb310_gatherEquinoxParts.sh b/cje-production/mbscripts/mb310_gatherEquinoxParts.sh
index f395b725d..9604a786c 100755
--- a/cje-production/mbscripts/mb310_gatherEquinoxParts.sh
+++ b/cje-production/mbscripts/mb310_gatherEquinoxParts.sh
@@ -51,13 +51,6 @@ if [ -d $REPO_DIR ]; then
popd
fi
-#import gpg keys
-gpg --batch --import "${KEYRING}"
-for fpr in $(gpg --list-keys --with-colons | awk -F: '/fpr:/ {print $10}' | sort -u);
-do
- echo -e "5\ny\n" | gpg --batch --command-fd 0 --expert --edit-key "${fpr}" trust;
-done
-
# publish Equinox
pushd $CJE_ROOT
mkdir -p $ECLIPSE_BUILDER_DIR/equinox/$TMP_DIR

Back to the top