Task command using wildcards in arg in Visual Studio Code
问题 I am using Visual Studio Code 0.9.2 on OS X Yosemite to edit a .java file. I attempt to compile this file using the following tasks.json file: { "version": "0.1.0", "command": "javac", "isShellCommand": true, "echoCommand": true, "showOutput": "always", "args": ["-d","${workspaceRoot}\/target","${workspaceRoot}\/src\/*.java"] } Executing this task echoes the following command to the Output window: running command$ javac -d /Users/caoimheboers/Desktop/JLab11/target /Users/caoimheboers/Desktop