summaryrefslogtreecommitdiff
path: root/platform/javascript/export/export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-03-16 11:53:08 +0100
committerGitHub <noreply@github.com>2022-03-16 11:53:08 +0100
commit9d732aa0cfcfd638c28ac8eb8149d912a5a3a642 (patch)
tree25f86a745f3138fa0201506388e694558e934ed0 /platform/javascript/export/export_plugin.cpp
parentb1fbd8ab40fa133b048fe49928f0a8f1e9bd8527 (diff)
parent98d0af7d5cd5fdba468ab88535a0152022467e85 (diff)
Merge pull request #58973 from bruvzg/gde_export
Diffstat (limited to 'platform/javascript/export/export_plugin.cpp')
-rw-r--r--platform/javascript/export/export_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/export/export_plugin.cpp b/platform/javascript/export/export_plugin.cpp
index e7855acf60..4448acccc2 100644
--- a/platform/javascript/export/export_plugin.cpp
+++ b/platform/javascript/export/export_plugin.cpp
@@ -440,7 +440,7 @@ Error EditorExportPlatformJavaScript::export_project(const Ref<EditorExportPrese
// Export pck and shared objects
Vector<SharedObject> shared_objects;
String pck_path = base_path + ".pck";
- Error error = save_pack(p_preset, pck_path, &shared_objects);
+ Error error = save_pack(p_preset, p_debug, pck_path, &shared_objects);
if (error != OK) {
EditorNode::get_singleton()->show_warning(TTR("Could not write file:") + "\n" + pck_path);
return error;