Skip to content

Commit 7b24d06

Browse files
committed
1.5.2
1 parent 37cbc1c commit 7b24d06

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

BLEUnlock/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.5.1</string>
20+
<string>1.5.2</string>
2121
<key>CFBundleVersion</key>
22-
<string>496</string>
22+
<string>498</string>
2323
<key>LSApplicationCategoryType</key>
2424
<string>public.app-category.utilities</string>
2525
<key>LSMinimumSystemVersion</key>

release

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ notarize() {
3030
--asc-provider $TEAM 2>&1 | tee $TMPDIR/altool.log
3131
uuid=$(awk '/^RequestUUID/ { print $3 }' $TMPDIR/altool.log)
3232
while true; do
33-
sleep 15
33+
sleep 5
3434
xcrun altool --notarization-info $uuid --username $USERNAME \
3535
--password "@keychain:AC_PASSWORD" --asc-provider 376NR42P9A 2>&1 |
36-
tee $TMPDIR/altool.log
36+
tee $TMPDIR/altool.log || true
3737
status=$(grep Status: $TMPDIR/altool.log | sed 's/^.*Status: *//')
38-
if [ "$status" != "in progress" ]; then
38+
if [ "$status" ] && [ "$status" != "in progress" ]; then
3939
break
4040
fi
4141
done

0 commit comments

Comments
 (0)