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 fc8a95f commit 1893244Copy full SHA for 1893244
azure-pipelines-1.yml
@@ -22,8 +22,11 @@ steps:
22
git remote set-url origin https://$env:UserName:$env:[email protected]/MaterialDesignInXAML/MaterialDesignInXamlToolkit.git
23
24
Write-Host "Before checkout"
25
-
26
- & { git checkout -b pipeline/icons } 2>&1 1>$null
+
+ & {
27
+ $ErrorActionPreference=SilentlyContinue;
28
+ git checkout -b pipeline/icons
29
+ } 2>&1 1>$null
30
31
Write-Host "LEC $LASTEXITCODE"'
32
failOnStderr: true
0 commit comments