Skip to content

Commit 0626e2e

Browse files
authored
Merge pull request #129 from learningequality/equalize_the_output
Fix invocation of base64 command.
2 parents aaa762c + 67a70ef commit 0626e2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
security create-keychain -p "$KEYCHAIN_PASSWORD" temp.keychain
113113
security set-keychain-settings -lut 21600 temp.keychain
114114
security unlock-keychain -p "$KEYCHAIN_PASSWORD" temp.keychain
115-
echo -n "${{ secrets.KOLIBRI_MAC_APP_CERTIFICATE }}" | base64 --decode --output certificate.p12
115+
echo -n "${{ secrets.KOLIBRI_MAC_APP_CERTIFICATE }}" | base64 --decode --output=certificate.p12
116116
# -A option allows any application to read keys.
117117
# This would be insecure if the keychain was retained but GitHub action
118118
# VMs are thrown away after use.

src/kolibri_app/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from kolibri_app.constants import MAC
66

7-
__version__ = "0.4.1"
7+
__version__ = "0.4.2"
88

99
os.environ["KOLIBRI_INSTALLER_VERSION"] = __version__
1010

0 commit comments

Comments
 (0)