File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,12 @@ extends:
6262 downloadType : specific
6363 itemPattern : plugin/jars/com.microsoft.java.debug.plugin-*.jar
6464 extractTars : false
65- - task : CopyFiles @2
66- displayName : " cp plugin.jar to server"
65+ - task : CmdLine @2
66+ displayName : cp plugin.jar to server
6767 inputs :
68- Contents : " $(System.ArtifactsDirectory)/plugin/jars/com.microsoft.java.debug.plugin-*.jar"
69- TargetFolder : server/
68+ script : |-
69+ mkdir -p server
70+ copy %System.ArtifactsDirectory%\plugin\jars\com.microsoft.java.debug.plugin-*.jar server\
7071 - task : Npm@1
7172 displayName : npm install
7273 inputs :
Original file line number Diff line number Diff line change @@ -57,11 +57,12 @@ extends:
5757 downloadType : specific
5858 itemPattern : m2/com.microsoft.java.debug.plugin/com.microsoft.java.debug.plugin-*.jar
5959 extractTars : false
60- - task : CopyFiles @2
61- displayName : " cp plugin.jar to server"
60+ - task : CmdLine @2
61+ displayName : cp plugin.jar to server
6262 inputs :
63- Contents : " $(System.ArtifactsDirectory)/m2/com.microsoft.java.debug.plugin/com.microsoft.java.debug.plugin-*.jar"
64- TargetFolder : server/
63+ script : |-
64+ mkdir -p server
65+ copy %System.ArtifactsDirectory%\plugin\jars\com.microsoft.java.debug.plugin-*.jar server\
6566 - task : Npm@1
6667 displayName : npm install
6768 inputs :
You can’t perform that action at this time.
0 commit comments