fix windows sign

This commit is contained in:
Alessandro Muntoni 2023-06-20 14:29:01 +02:00
parent 266a16f485
commit adc07be2ce

View File

@ -30,9 +30,9 @@ case $i in
shift # past argument=value
;;
-cp=*|--cert_pssw=*)
if [ -z "${i#*=}" ]; then
CERT_PSSW="${i#*=}"
if [ -n "$CERT_PSSW" ]; then
SIGN=true
CERT_PSSW="${i#*=}"
fi
shift # past argument=value
;;
@ -60,4 +60,4 @@ if [ "$SIGN" = true ] ; then
bash $SCRIPTS_PATH/internal/2b_sign_dlls.sh -i=$PACKAGES_PATH $CERT_FILE_OPTION -cp=$CERT_PSSW
echo "======= Installer Signed ======="
fi
fi