Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUse signing keychain for sign_app.sh #374
Merged
Conversation
`yarn run create_dist` has been failing with keychain errors recently, this corrects the keychain file name. Partial fix for brave/brave-browser#387
|
Few comments |
build/mac/BUILD.gn
Outdated
| @@ -2,11 +2,11 @@ import("//brave/build/config.gni") | |||
|
|
|||
| declare_args() { | |||
| mac_signing_identifier = "" | |||
| mac_signing_keychain = "login" | |||
| mac_signing_keychain = "keychain" | |||
This comment has been minimized.
This comment has been minimized.
RyanJarv
Aug 31, 2018
Contributor
This should be the name of the keychain, login is usually the default so that makes sense here still I think.
build/mac/BUILD.gn
Outdated
| } | ||
|
|
||
| _packaging_dir = "$root_out_dir/$chrome_product_full_name Packaging" | ||
| keychain_db = getenv("HOME") + "/Library/Keychains/login.${mac_signing_keychain}-db" | ||
| keychain_db = getenv("HOME") + "/Library/Keychains/signing.${mac_signing_keychain}-db" |
This comment has been minimized.
This comment has been minimized.
RyanJarv
Aug 31, 2018
Contributor
"/Library/Keychains/login.${mac_signing_keychain}-db"
should be imo
"/Library/Keychains/${mac_signing_keychain}.keychain-db"
The keychain-db is always the same and doesn't change, the first part is the keychain name which generally defaults to login
|
lgtm |
petemill
pushed a commit
to petemill/brave-core
that referenced
this pull request
Jul 5, 2019
Adds action to backup wallet notification
NejcZdovc
pushed a commit
that referenced
this pull request
Sep 18, 2019
Adds action to backup wallet notification
NejcZdovc
pushed a commit
that referenced
this pull request
Sep 19, 2019
Adds action to backup wallet notification
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
mbacchi commentedAug 30, 2018
yarn run create_disthas been failing with keychain errorsrecently, this corrects the keychain file name.
Partial fix for brave/brave-browser#387
Submitter Checklist:
git rebase -ito squash commits (if needed).Test Plan:
Reviewer Checklist: