Skip to content

Commit

Permalink
add sleep to notarize scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Glonek committed Nov 14, 2022
1 parent c747ded commit 320b821
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions bin/notarize/sign-notarize-all.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
./sign-pkg-notarize.sh || exit 1
sleep 60
./sign-zip-notarize.sh || exit 1
3 changes: 3 additions & 0 deletions bin/notarize/sign-pkg-notarize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ function signer() {

##echo "Press ENTER to sign"
##read
sleep 60

# codesign and test
echo "Codesigning and verifying"
Expand All @@ -58,10 +59,12 @@ cd build

##echo "Press ENTER to sign pkg file"
##read
sleep 60
productsign --timestamp --sign "Developer ID Installer: Aerospike, Inc. (22224RFU67)" AeroLab.pkg aerolab-macos.pkg || exit 1

##echo "Press ENTER to notarize"
##read
sleep 60

# notarize
echo "Notarizing"
Expand Down
2 changes: 2 additions & 0 deletions bin/notarize/sign-zip-notarize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ echo "OUT: ${FILE}"

##echo "Press ENTER to sign"
##read
sleep 60

# codesign and test
echo "Codesigning and verifying"
Expand All @@ -48,6 +49,7 @@ codesign --verbose --verify ${BIN} || exit 1

##echo "Press ENTER to notarize"
##read
sleep 60

# rename binary and zip it up
echo "Zipping up aerolab"
Expand Down

0 comments on commit 320b821

Please sign in to comment.