diff --git a/godot_compile/godot_compile_utils.py b/godot_compile/godot_compile_utils.py index 1fae045..f78f604 100644 --- a/godot_compile/godot_compile_utils.py +++ b/godot_compile/godot_compile_utils.py @@ -61,7 +61,8 @@ def install_miniconda() -> str: try: output = subprocess.check_output(command, stderr=subprocess.PIPE, text=True) except Exception as err: - raise Exception(f"could not install miniconda using command {" ".join(command)}") from err + command_string = " ".join(command) + raise Exception(f"could not install miniconda using command {command_string}") from err return output