Skip to content

Commit

Permalink
1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ts1 committed Oct 23, 2019
1 parent 37cbc1c commit 7b24d06
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions BLEUnlock/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.1</string>
<string>1.5.2</string>
<key>CFBundleVersion</key>
<string>496</string>
<string>498</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions release
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ notarize() {
--asc-provider $TEAM 2>&1 | tee $TMPDIR/altool.log
uuid=$(awk '/^RequestUUID/ { print $3 }' $TMPDIR/altool.log)
while true; do
sleep 15
sleep 5
xcrun altool --notarization-info $uuid --username $USERNAME \
--password "@keychain:AC_PASSWORD" --asc-provider 376NR42P9A 2>&1 |
tee $TMPDIR/altool.log
tee $TMPDIR/altool.log || true
status=$(grep Status: $TMPDIR/altool.log | sed 's/^.*Status: *//')
if [ "$status" != "in progress" ]; then
if [ "$status" ] && [ "$status" != "in progress" ]; then
break
fi
done
Expand Down

0 comments on commit 7b24d06

Please sign in to comment.