Skip to content

Commit 2ef6a5b

Browse files
fix ps in yaml
1 parent 6a41472 commit 2ef6a5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ jobs:
104104
$uri = if ($IsWindows) {
105105
$ext = 'zip'
106106
"https://github.com/PowerShell/DSC/releases/download/v$version/DSC-$version-x86_64-pc-windows-msvc.zip"
107-
} else if ($IsLinux) {
107+
} elseif ($IsLinux) {
108108
"https://github.com/PowerShell/DSC/releases/download/v$version/DSC-$version-x86_64-linux.tar.gz"
109109
}
110-
else if ($IsMacOS) {
110+
elseif ($IsMacOS) {
111111
"https://github.com/PowerShell/DSC/releases/download/v$version/DSC-$version-aarch64-apple-darwin.tar.gz"
112112
}
113113
else {

0 commit comments

Comments
 (0)