Skip to content
Snippets Groups Projects
Unverified Commit ae096096 authored by Kali Kaneko's avatar Kali Kaneko Committed by Kali Kaneko
Browse files

[pkg] fix typos

parent 8fd0fcc5
No related branches found
No related tags found
No related merge requests found
......@@ -257,6 +257,7 @@ notarize_all:
APPNAME=${APPNAME} VERSION=${VERSION} TARGET=${TARGET} OSXAPPPASS=${OSXAPPPASS} branding/scripts/osx-stapler.sh
# --------------------
# TODO test and remove
notarize_installer:
# courtesy of https://skyronic.com/2019/07/app-notarization-for-qt-applications/
......@@ -278,10 +279,10 @@ create_dmg:
ifeq (${PLATFORM}, darwin)
@create-dmg deploy/${APPNAME}-${VERSION}.dmg build/installer/${APPNAME}-installer-${VERSION}.app
endif
# --------------------
check_qtifw:
ifdef HAS_QTIFW
@echo "[+] Found QTIFW"
......
......@@ -14,9 +14,9 @@ requestInfo=$(xcrun altool --notarize-app \
-u ${USER} \
-p ${OSXAPPPASS})
uuid=$(python branding/scripts/osx-get-uuid.py $requestInfo)
uuid=$(python3 branding/scripts/osx-staple-uuid.py $requestInfo)
current_status = "in progress"
current_status="in progress"
while [[ "$currentStatus" == "in progress" ]]; do
......@@ -25,7 +25,7 @@ sleep 15
statusResponse=$(xcrun altool --notarization-info "$uuid" \
--username ${USER} \
--password ${OSXAPPPASS})
current_status=$(python branding/scripts/osx-get-status.py $statusResponse)
current_status=$(python3 branding/scripts/osx-staple-status.py $statusResponse)
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment