google/closure-compiler

Command line recursive globbing does not work on Windows

Open

#3087 aperta il 26 set 2018

Vedi su GitHub
 (7 commenti) (0 reazioni) (1 assegnatario)Java (1197 fork)batch import
P3help wantedinternal-issue-createdtriage-done

Metriche repository

Star
 (7176 star)
Metriche merge PR
 (Merge medio 12g 15h) (1 PR mergiata in 30 g)

Descrizione

I'm having trouble getting the '**' command-line globbing operator for js files to work on Windows in recent releases. It appears to work on Linux just fine.

Windows example:

C:/temp/closure/test/test1.js C:/temp/closure/test/test2.js

> java -jar compiler.jar --js='C:/temp/closure/**.js' The compiler is waiting for input via stdin

Linux example:

/tmp/closure/test/test1.js /tmp/closure/test/test2.js

> java -jar compiler.jar --js='/tmp/closure/**.js' <compiled output>

Guida contributor