# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1592965648 0 # Node ID 7ba8c8ff548f46db44663ffd7e22b0d744ec85fe # Parent 7ce8ecb79d4b0040d1c3342c09e340d1bd5e98c4 Mac: Files in the main bundle directory causes code signing to fail. Move the data directory to be in Contents/Resources on Mac. diff -r 7ce8ecb79d4b -r 7ba8c8ff548f mac/dw.m --- a/mac/dw.m Tue Jun 23 23:54:01 2020 +0000 +++ b/mac/dw.m Wed Jun 24 02:27:28 2020 +0000 @@ -12147,7 +12147,10 @@ size_t len = (size_t)(app - pathcopy); if(len > 0) + { strncpy(_dw_bundle_path, pathcopy, len + 4); + strcat(_dw_bundle_path, "/Contents/Resources"); + } *app = 0; getcwd(pathbuf, PATH_MAX);