1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 22:25:25 +02:00

[releng] suppress warning about expiring CERT on verifying signatures

This commit is contained in:
Martin Oberhuber 2008-11-11 17:08:10 +00:00
parent e8ca55189b
commit 6454ac6b32

View file

@ -113,7 +113,7 @@ elif [ ${TYPE} = testSigned ]; then
sleep 30
echo "TRIES to go: ${TRIES}"
for x in `ls *.jar | grep -v '^temp[_.]'`; do
result=`jarsigner -verify ${x}`
result=`jarsigner -verify ${x} | head -1`
if [ "$result" = "jar verified." ]; then
echo "${result}: ${x}"
cp ${x} ${SITE}/features.${stamp}
@ -148,7 +148,7 @@ elif [ ${TYPE} = testSigned ]; then
sleep 30
echo "TRIES to go: ${TRIES}"
for x in `ls *.jar | grep -v '^temp[_.]'`; do
result=`jarsigner -verify ${x}`
result=`jarsigner -verify ${x} | head -1`
if [ "$result" = "jar verified." ]; then
echo "${result}: ${x}"
cp ${x} ${SITE}/plugins.${stamp}