We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea08d96 commit f0d48f7Copy full SHA for f0d48f7
build/windows/make_chocolatey.ps1
@@ -12,9 +12,9 @@ if ($version.Contains("-"))
12
$version = $version.Substring(0, $version.IndexOf("-"))
13
}
14
15
-Set-Location (Join-Path $env:BUILD_SOURCESDIRECTORY 'build\windows\Chocolatey\crowdsec')
16
-Copy-Item (Join-Path $env:BUILD_SOURCESDIRECTORY "crowdsec_$version.msi") "tools\crowdsec.msi"
+Set-Location .\build\windows\Chocolatey\crowdsec
+Copy-Item ..\..\..\..\crowdsec_$version.msi tools\crowdsec.msi
17
18
choco pack --version $version
19
20
-Copy-Item "crowdsec.$version.nupkg" (Join-Path $env:BUILD_SOURCESDIRECTORY ".")
+Copy-Item crowdsec.$version.nupkg ..\..\..\..\
0 commit comments