Add quotes when passing the custom module folders parameter.

This commit is contained in:
Relintai 2022-08-22 15:17:03 +02:00
parent 1fa33fadfa
commit 5489ace788

View File

@ -393,7 +393,7 @@ if len(sys.argv) > 1:
build_string = get_exports_for('global') + get_additional_commands_for('global') + 'scons ' build_string = get_exports_for('global') + get_additional_commands_for('global') + 'scons '
if module_config.custom_module_folders != "": if module_config.custom_module_folders != "":
build_string += 'custom_modules=' + module_config.custom_module_folders + " " build_string += 'custom_modules="' + module_config.custom_module_folders + '" '
build_string += 'tools=' build_string += 'tools='
if 'e' in arg: if 'e' in arg: