google/closure-compiler

Command line recursive globbing does not work on Windows

オープン

#3,087 opened on 2018/09/26

 (7 件のコメント) (0 件のリアクション) (1 人の担当者)Java (1,197 件のフォーク)batch import
P3help wantedinternal-issue-createdtriage-done

Repository metrics

Stars
 (7,176 個のスター)
PR merge metrics
 (PR metrics pending)

説明

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>

コントリビューターガイド