Skip to content

Commit

Permalink
Merge pull request #7399 from brave/maxk-fix-mac-signing
Browse files Browse the repository at this point in the history
Output dir of signing on mac changed.
  • Loading branch information
mihaiplesa authored and mkarolin committed Jan 4, 2021
1 parent 57a4e15 commit 25549a6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build/mac/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ if (is_universal_binary) {
unsigned_app_path = "$brave_packaging_base_dir/$brave_exe"
}

signed_app_path = "$root_out_dir/$mac_signing_output_prefix/" + string_replace("$chrome_product_full_name", " ", "") + "-$chrome_version_full/$brave_exe"
if (is_release_channel) {
signed_app_path = "$root_out_dir/$mac_signing_output_prefix/stable/$brave_exe"
} else {
signed_app_path =
"$root_out_dir/$mac_signing_output_prefix/$brave_channel/$brave_exe"
}

if (skip_signing) {
app_path = unsigned_app_path
Expand Down

0 comments on commit 25549a6

Please sign in to comment.