Closed deivid-rodriguez closed 4 years ago
The problem was that rake build can no longer be run from a path that has spaces on it.
rake build
My diagnosis was that we need to escape the path for the shell somewhere.
My fix is to add .shellescape at the right place.
.shellescape
I chose this fix because it fixes the problem.
Fixes #7512.
@bundlerbot r=colby-swandale
What was the end-user problem that led to this PR?
The problem was that
rake build
can no longer be run from a path that has spaces on it.What was your diagnosis of the problem?
My diagnosis was that we need to escape the path for the shell somewhere.
What is your fix for the problem, implemented in this PR?
My fix is to add
.shellescape
at the right place.Why did you choose this fix out of the possible options?
I chose this fix because it fixes the problem.
Fixes #7512.