grunt-pot icon indicating copy to clipboard operation
grunt-pot copied to clipboard

copyright_holder and comment_tag options fail on Windows

Open ccprog opened this issue 10 years ago • 2 comments

These two options require quoting; Windows only knows about double quotes for that.

The task consequently fails with "unable to find file" returned from xgettext

ccprog avatar May 21 '14 12:05 ccprog

Sorry, this is months old but, do you mean to say that on Windows the copyright-holder option would be the following

 --copyright-holder="{value}"

using singled quotes, as opposed to

 --copyright-holder='{value}'

stephenharris avatar Dec 18 '14 11:12 stephenharris

On Windows, only "{value}" quotes are known. See http://ss64.com/nt/syntax-esc.html. '{value}' is only defined in Unix/Linux shells.

ccprog avatar Dec 19 '14 11:12 ccprog