If user home or build path contained white space, build was failing on Windows
For some reason, shell_quote() qmake function when calling powershell -Command md -Force ... was not treated as a single string with white space, but rather multiple strings separated by white space
From issue: https://github.com/Gemba/skyscraper/issues/11
If user home or build path contained white space, build was failing on Windows
For some reason,
shell_quote()
qmake function when callingpowershell -Command md -Force ...
was not treated as a single string with white space, but rather multiple strings separated by white space$$shell_path()
surrounding path in PowerShellmd
command with single quotesqmake
functions for native shell handling of quotes and path for file parameter that was missing itAttached are text output and screenshot artifacts of build failure (before) and build success (after)
build failure.txt build success.txt