We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1f8962 commit 604a9c3Copy full SHA for 604a9c3
scripts/consolidate-links.js
@@ -48,7 +48,7 @@ const spawnAsync = (command, args, options) => {
48
49
const toCygwinPathAsync = async (p) => {
50
p = p.split("\\").join("/")
51
- let ret = await spawnAsync(path.join(rootFolder, "re", "_build", "default", "bin", "EsyBash.exe"), ["bash", "-lc", `cygpath "${p}"`]);
+ let ret = await spawnAsync(path.join(rootFolder, "re", "_build", "default", "bin", "EsyBash.exe"), ["bash", "-lc", `cygpath '${p}'`]);
52
return ret.trim();
53
}
54
0 commit comments