mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
8b728e4056
This was how clone command was previously being generated, for example: ``` git clone --recursive --branch "master" --depth 1 https://github.com/mattn/mruby-onig-regexp.git /path/to mruby with spaces/mruby-3.1.0/build/repos/wasm/mruby-onig-regexp ``` Now it's changed so the path is quoted and will work when containing spaces: ``` git clone --recursive --branch "master" --depth 1 https://github.com/mattn/mruby-onig-regexp.git "/path/to mruby with spaces/mruby-3.1.0/build/repos/wasm/mruby-onig-regexp" ``` Similar for the other commands.