Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Commit

Permalink
Make app bundle self contained
Browse files Browse the repository at this point in the history
Everything needs to be in Versions/A and then symlinked to or else packaging fails over on the browser-laptop side
  • Loading branch information
bbondy committed Oct 13, 2016
1 parent 8f85bd3 commit 22a550d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion electron.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@
}],
]
},
'destination': '<(PRODUCT_DIR)/<(product_name) Framework.framework/Internet Plug-Ins',
'destination': '<(PRODUCT_DIR)/<(product_name) Framework.framework/Versions/A/Internet Plug-Ins',
'files': [
'<@(copied_libraries)',
],
Expand Down Expand Up @@ -628,6 +628,14 @@
'Libraries',
],
},
{
'postbuild_name': 'Add symlinks for framework subdirectories',
'action': [
'tools/mac/create-framework-subdir-symlinks.sh',
'<(product_name) Framework',
'Internet Plug-Ins',
],
},
{
'postbuild_name': 'Copy locales',
'action': [
Expand Down

1 comment on commit 22a550d

@bbondy
Copy link
Member Author

@bbondy bbondy commented on 22a550d Oct 14, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.