Putting dmd error through grep for dustmite
Vladimir Panteleev
thecybershadow.lists at gmail.com
Mon Nov 5 03:13:26 UTC 2018
On Monday, 5 November 2018 at 03:01:43 UTC, Dennis wrote:
> Does anybody know what the problem is? I'm using Windows 10 and
> Git Bash.
Sounds like the problem comes from the differences in shell
syntax (quoting style) for the two shells here. When you run the
command in Git Bash, the syntax used is Bash's. However, Dustmite
will call shellExecute, which will pass the command to cmd.exe.
cmd.exe will interpret \` verbatim (i.e. as \`), so, try not
quoting the ` characters (or just replace them with . if you want
the command to work in both shells).
More information about the Digitalmars-d-learn
mailing list