Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/win-sign/reSign.sh')
-rwxr-xr-xeclipse.platform.releng.tychoeclipsebuilder/win-sign/reSign.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/win-sign/reSign.sh b/eclipse.platform.releng.tychoeclipsebuilder/win-sign/reSign.sh
deleted file mode 100755
index a46b59a19..000000000
--- a/eclipse.platform.releng.tychoeclipsebuilder/win-sign/reSign.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/bash -x
-#*******************************************************************************
-# Copyright (c) 2019 IBM Corporation and others.
-#
-# This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License 2.0
-# which accompanies this distribution, and is available at
-# https://www.eclipse.org/legal/epl-2.0/
-#
-# SPDX-License-Identifier: EPL-2.0
-#
-# Contributors:
-# Sravan Lakkimsetti - initial API and implementation
-#*******************************************************************************
-reSign ()
-{
- fileName=$1
- mkdir tempLauncher
- pushd tempLauncher
-
- zipfile=$(basename $fileName)
- cp ../${fileName} ${zipfile}.zip
- unzip ${zipfile}.zip
- #sign files
- copy ../../win-sign/winSignPom.xml pom.xml
- mvn clean verify
-
- zip ${zipfile}new.zip *.exe
- cp ${zipfile}new.zip ../${fileName}
- popd
- rm -r tempLauncher
-}
-
-for i in $(ls target/repository/binary/*win32*)
-do
- reSign $i
-done

Back to the top