Skip to content

Commit

Permalink
Merge pull request #129 from learningequality/equalize_the_output
Browse files Browse the repository at this point in the history
Fix invocation of base64 command.
  • Loading branch information
bjester committed May 2, 2024
2 parents aaa762c + 67a70ef commit 0626e2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
security create-keychain -p "$KEYCHAIN_PASSWORD" temp.keychain
security set-keychain-settings -lut 21600 temp.keychain
security unlock-keychain -p "$KEYCHAIN_PASSWORD" temp.keychain
echo -n "${{ secrets.KOLIBRI_MAC_APP_CERTIFICATE }}" | base64 --decode --output certificate.p12
echo -n "${{ secrets.KOLIBRI_MAC_APP_CERTIFICATE }}" | base64 --decode --output=certificate.p12
# -A option allows any application to read keys.
# This would be insecure if the keychain was retained but GitHub action
# VMs are thrown away after use.
Expand Down
2 changes: 1 addition & 1 deletion src/kolibri_app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from kolibri_app.constants import MAC

__version__ = "0.4.1"
__version__ = "0.4.2"

os.environ["KOLIBRI_INSTALLER_VERSION"] = __version__

Expand Down

0 comments on commit 0626e2e

Please sign in to comment.