Skip to content

Commit 604a9c3

Browse files
Manuel Hornungbryphe
Manuel Hornung
authored andcommitted
Replace double quotes with single quotes for the path in the nested EsyBash call (#51)
1 parent a1f8962 commit 604a9c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/consolidate-links.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const spawnAsync = (command, args, options) => {
4848

4949
const toCygwinPathAsync = async (p) => {
5050
p = p.split("\\").join("/")
51-
let ret = await spawnAsync(path.join(rootFolder, "re", "_build", "default", "bin", "EsyBash.exe"), ["bash", "-lc", `cygpath "${p}"`]);
51+
let ret = await spawnAsync(path.join(rootFolder, "re", "_build", "default", "bin", "EsyBash.exe"), ["bash", "-lc", `cygpath '${p}'`]);
5252
return ret.trim();
5353
}
5454

0 commit comments

Comments
 (0)