From 1416af3b71f55403e91cb7bf17a7bfef2846f1dc Mon Sep 17 00:00:00 2001 From: Reece Dunham Date: Wed, 19 Jun 2019 11:37:14 -0400 Subject: [PATCH] Indentation fixes --- tools/ci.psm1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/ci.psm1 b/tools/ci.psm1 index 0e2c5547f96..d4a6ffc131f 100644 --- a/tools/ci.psm1 +++ b/tools/ci.psm1 @@ -468,9 +468,9 @@ function Invoke-CIFinish foreach ($package in $packages) { if (Test-Path $package) { - Write-Log "Package found: $package" + Write-Log "Package found: $package" } - else + else { Write-Warning -Message "Package NOT found: $package" } @@ -723,12 +723,12 @@ function New-LinuxPackage { if ($package -isnot [System.IO.FileInfo]) { - $packageObj = Get-Item $package - Write-Error -Message "The PACKAGE is not a FileInfo object" + $packageObj = Get-Item $package + Write-Error -Message "The PACKAGE is not a FileInfo object" } else { - $packageObj = $package + $packageObj = $package } Write-Log -message "Artifacts directory: ${env:BUILD_ARTIFACTSTAGINGDIRECTORY}"