Skip to content

Commit

Permalink
Update notarize
Browse files Browse the repository at this point in the history
  • Loading branch information
hschneider authored Dec 26, 2023
1 parent cde51eb commit f2a6a51
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions notarize
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
#!/bin/bash -u
#
# notarize 2.0.1
# notarize 2.0.2
#
# Notarize an macOS app bundles, DMGs and PKGs.
#
# Changelog:
# 2.0.2:
# - Fixed deleting temp. zip after notarization
# 2.0.1:
# - Added quoted paths
# 2.0.0:
Expand All @@ -25,7 +27,7 @@
# CALL:
# notarize file (or app bundle)
#
# (c)2020-2023 Harald Schneider - marketmix.com
# (c)2020-2023 Harald Schneider

# Setup.start
#
Expand All @@ -39,7 +41,7 @@ doCleanup() {
echo "Cleanup ..."
rm notarize.log > /dev/null 2>&1
rm devlog.json > /dev/null 2>&1
rm $FILE.zip > /dev/null 2>&1
rm "$FILE.zip" > /dev/null 2>&1
}

FILE="${1%/}"
Expand Down

0 comments on commit f2a6a51

Please sign in to comment.