mirror of
https://github.com/tribufu/ServerManagers
synced 2026-06-01 09:42:39 +00:00
pipeline file changes
This commit is contained in:
parent
3d38943565
commit
a019ee80f5
1 changed files with 7 additions and 7 deletions
|
|
@ -33,15 +33,15 @@ stages:
|
||||||
targetType: inline
|
targetType: inline
|
||||||
script: |
|
script: |
|
||||||
if (Test-Path $env:BUILD_ARTIFACTSTAGINGDIRECTORY) {
|
if (Test-Path $env:BUILD_ARTIFACTSTAGINGDIRECTORY) {
|
||||||
Remove-Item -Path "$env:BUILD_ARTIFACTSTAGINGDIRECTORY\*" -Filter '*.*' -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path "$env:BUILD_ARTIFACTSTAGINGDIRECTORY\*" -Filter '*.*' -Recurse -Force -Verbose -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Test-Path $env:BUILD_BINARIESDIRECTORY) {
|
if (Test-Path $env:BUILD_BINARIESDIRECTORY) {
|
||||||
Remove-Item -Path "$env:BUILD_BINARIESDIRECTORY\*" -Filter '*.*' -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path "$env:BUILD_BINARIESDIRECTORY\*" -Filter '*.*' -Recurse -Force -Verbose -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Test-Path $env:BUILD_PUBLISHDIRECTORY) {
|
if (Test-Path $env:BUILD_PUBLISHDIRECTORY) {
|
||||||
Remove-Item -Path "$env:BUILD_PUBLISHDIRECTORY" -Filter '*.*' -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path "$env:BUILD_PUBLISHDIRECTORY" -Filter '*.*' -Recurse -Force -Verbose -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
pwsh: true
|
pwsh: true
|
||||||
|
|
||||||
|
|
@ -264,18 +264,18 @@ stages:
|
||||||
targetType: inline
|
targetType: inline
|
||||||
script: |
|
script: |
|
||||||
if (Test-Path $env:BUILD_ARTIFACTSTAGINGDIRECTORY) {
|
if (Test-Path $env:BUILD_ARTIFACTSTAGINGDIRECTORY) {
|
||||||
Remove-Item -Path "$env:BUILD_ARTIFACTSTAGINGDIRECTORY\*" -Filter '*.*' -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path "$env:BUILD_ARTIFACTSTAGINGDIRECTORY\*" -Filter '*.*' -Recurse -Force -Verbose -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Test-Path $env:BUILD_BINARIESDIRECTORY) {
|
if (Test-Path $env:BUILD_BINARIESDIRECTORY) {
|
||||||
Remove-Item -Path "$env:BUILD_BINARIESDIRECTORY\*" -Filter '*.*' -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path "$env:BUILD_BINARIESDIRECTORY\*" -Filter '*.*' -Recurse -Force -Verbose -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Test-Path $env:BUILD_SOURCESDIRECTORY) {
|
if (Test-Path $env:BUILD_SOURCESDIRECTORY) {
|
||||||
Remove-Item -Path "$env:BUILD_SOURCESDIRECTORY\*" -Filter '*.*' -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path "$env:BUILD_SOURCESDIRECTORY\*" -Filter '*.*' -Recurse -Force -Verbose -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Test-Path $env:BUILD_PUBLISHDIRECTORY) {
|
if (Test-Path $env:BUILD_PUBLISHDIRECTORY) {
|
||||||
Remove-Item -Path "$env:BUILD_PUBLISHDIRECTORY" -Filter '*.*' -Recurse -Force -ErrorAction SilentlyContinue
|
Remove-Item -Path "$env:BUILD_PUBLISHDIRECTORY" -Filter '*.*' -Recurse -Force -Verbose -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
pwsh: true
|
pwsh: true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue