diff options
| author | Rémi Verschelde | 2017-09-25 22:23:49 +0200 |
|---|---|---|
| committer | GitHub | 2017-09-25 22:23:49 +0200 |
| commit | dae02a90415b3af5ad2f14297e6259641cccef81 (patch) | |
| tree | 50a40f2ea7eef14f39eda16a70e9494296492f57 /editor | |
| parent | c5da28f24cbab915098165b13f50bcda049e273e (diff) | |
| parent | f5b3b24c22186f50b3e57fc162ef9790f288c704 (diff) | |
| download | godot-dae02a90415b3af5ad2f14297e6259641cccef81.tar.gz godot-dae02a90415b3af5ad2f14297e6259641cccef81.tar.zst godot-dae02a90415b3af5ad2f14297e6259641cccef81.zip | |
Diffstat (limited to 'editor')
| -rw-r--r-- | editor/editor_export.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_export.cpp b/editor/editor_export.cpp index 4caf2641f..db12998dd 100644 --- a/editor/editor_export.cpp +++ b/editor/editor_export.cpp @@ -273,6 +273,8 @@ void EditorExportPlatform::gen_debug_flags(Vector<String> &r_flags, int p_flags) } Error EditorExportPlatform::_save_pack_file(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total) { + if (p_path.ends_with(".so") || p_path.ends_with(".dylib") || p_path.ends_with(".dll")) + return OK; PackData *pd = (PackData *)p_userdata; |
