grunt-sencha-dependencies icon indicating copy to clipboard operation
grunt-sencha-dependencies copied to clipboard

ext_core file is assigned to app array in Windows

Open frosty5689 opened this issue 11 years ago • 1 comments

In splitArrayIntoThree.js, the RegEx 'regX' is built using the senchaDir global, but that in windows uses '' which must be escaped for a valid RegEx to be created.

Temporary fix: regX = new RegExp("^" + senchaDir.replace(//g, '\'));

frosty5689 avatar Feb 27 '14 20:02 frosty5689

Actually, the fix doesn't work for me. I had to fix it to compile as follows:

regX = new RegExp("^" + senchaDir.replace(///g, '')); // extra '/' added before 'g'

However the result is still the same: 0 files for ext_core.

When will this be fixed?

dilipramji avatar May 27 '14 17:05 dilipramji