opticharger: skip packages labled as PRESIGNED
This fixes market updates and redundant *.old files from being packaged- looks to save about 10MB on the zip. Change-Id: I82266204de3a04f71b24e4183672185d6b2da8d9
This commit is contained in:
parent
b0ed627563
commit
a82b7b3fff
1 changed files with 5 additions and 0 deletions
|
@ -108,6 +108,11 @@ then
|
|||
echo "Unable to find certificate for $NAME"
|
||||
exit 1;
|
||||
fi
|
||||
if [ "$CERT" = "PRESIGNED" ];
|
||||
then
|
||||
echo "$NAME is presigned, skipping"
|
||||
exit 1;
|
||||
fi
|
||||
fi
|
||||
|
||||
[ $QUIET ] || echo "Certificate: $CERT";
|
||||
|
|
Loading…
Reference in a new issue