We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2109c58 commit 105f9e6Copy full SHA for 105f9e6
.azure-pipelines/nightly.yml
@@ -58,13 +58,11 @@ extends:
58
downloadType: specific
59
itemPattern: plugin/jars/com.microsoft.java.debug.plugin-*.jar
60
extractTars: false
61
- - task: CmdLine@2
62
- displayName: cp plugin.jar to server
+ - task: CopyFiles@2
+ displayName: "cp plugin.jar to server"
63
inputs:
64
- script: |-
65
- mkdir -p server
66
-
67
- copy $(System.ArtifactsDirectory)/plugin/jars/com.microsoft.java.debug.plugin-*[!a-zA-Z].jar server/
+ Contents: "$(System.ArtifactsDirectory)/plugin/jars/com.microsoft.java.debug.plugin-*.jar"
+ TargetFolder: server/
68
- task: Npm@1
69
displayName: npm install
70
0 commit comments