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:
parent
e8ca55189b
commit
6454ac6b32
1 changed files with 2 additions and 2 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue