diff options
| author | Ruslan Mustakov | 2017-09-04 20:10:03 +0700 |
|---|---|---|
| committer | Ruslan Mustakov | 2017-09-26 00:18:08 +0700 |
| commit | f5b3b24c22186f50b3e57fc162ef9790f288c704 (patch) | |
| tree | 7c828580f53b83a847fc676b6f1c70e3da7bec60 /editor | |
| parent | 14b4ad931f54c73aff9021a1314943278295e602 (diff) | |
| download | godot-f5b3b24c22186f50b3e57fc162ef9790f288c704.tar.gz godot-f5b3b24c22186f50b3e57fc162ef9790f288c704.tar.zst godot-f5b3b24c22186f50b3e57fc162ef9790f288c704.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; |
