diff options
author | daviirodrig <30713947+daviirodrig@users.noreply.github.com> | 2023-01-27 05:09:30 -0300 |
---|---|---|
committer | daviirodrig <30713947+daviirodrig@users.noreply.github.com> | 2023-01-27 05:09:30 -0300 |
commit | 240374c58ff5c23b633bf9673e436064c91ffd97 (patch) | |
tree | 074bc4807af4624707b43bc3ba9bbc4080ac6d60 /platform/macos/export | |
parent | d1e5903c67956707948b1de370b807e3aad395b7 (diff) |
Fix split allow empty string in SSH export plugin
Diffstat (limited to 'platform/macos/export')
-rw-r--r-- | platform/macos/export/export_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/macos/export/export_plugin.cpp b/platform/macos/export/export_plugin.cpp index 73fbd45400..5c20016aa5 100644 --- a/platform/macos/export/export_plugin.cpp +++ b/platform/macos/export/export_plugin.cpp @@ -2016,8 +2016,8 @@ Error EditorExportPlatformMacOS::run(const Ref<EditorExportPreset> &p_preset, in if (port.is_empty()) { port = "22"; } - Vector<String> extra_args_ssh = p_preset->get("ssh_remote_deploy/extra_args_ssh").operator String().split(" "); - Vector<String> extra_args_scp = p_preset->get("ssh_remote_deploy/extra_args_scp").operator String().split(" "); + Vector<String> extra_args_ssh = p_preset->get("ssh_remote_deploy/extra_args_ssh").operator String().split(" ", false); + Vector<String> extra_args_scp = p_preset->get("ssh_remote_deploy/extra_args_scp").operator String().split(" ", false); const String basepath = dest.path_join("tmp_macos_export"); |