From 6b4bec1aab0b77b19d61ac719d916917a1859272 Mon Sep 17 00:00:00 2001 From: Travis Glenn Hansen Date: Sun, 2 Apr 2023 10:42:16 -0600 Subject: [PATCH] correct ci variable name Signed-off-by: Travis Glenn Hansen --- ci/bin/launch-csi-sanity.ps1 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ci/bin/launch-csi-sanity.ps1 b/ci/bin/launch-csi-sanity.ps1 index 35d4318..549f6df 100644 --- a/ci/bin/launch-csi-sanity.ps1 +++ b/ci/bin/launch-csi-sanity.ps1 @@ -29,13 +29,13 @@ Write-Output "csi.stagingdir: ${env:CSI_SANITY_TEMP_DIR}\stage" $exe = "csi-sanity.exe" $exeargs = @() -$xecargs += "-csi.endpoint", "unix://${endpoint}" -$xecargs += "-csi.mountdir", "${env:CSI_SANITY_TEMP_DIR}\mnt" -$xecargs += "-csi.stagingdir", "${env:CSI_SANITY_TEMP_DIR}\stage" -$xecargs += "-csi.testvolumeexpandsize", "2147483648" -$xecargs += "-csi.testvolumesize", "1073741824" -$xecargs += "-ginkgo.skip", "${env:CSI_SANITY_SKIP}" -$xecargs += "-ginkgo.focus", "${env:CSI_SANITY_FOCUS}" +$exeargs += "-csi.endpoint", "unix://${endpoint}" +$exeargs += "-csi.mountdir", "${env:CSI_SANITY_TEMP_DIR}\mnt" +$exeargs += "-csi.stagingdir", "${env:CSI_SANITY_TEMP_DIR}\stage" +$exeargs += "-csi.testvolumeexpandsize", "2147483648" +$exeargs += "-csi.testvolumesize", "1073741824" +$exeargs += "-ginkgo.skip", "${env:CSI_SANITY_SKIP}" +$exeargs += "-ginkgo.focus", "${env:CSI_SANITY_FOCUS}" if ($env:CSI_SANITY_FAILFAST -eq "true") { $exeargs += "-ginkgo.fail-fast"