Skip to content

Commit

Permalink
Release cfssl 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcker committed Dec 19, 2022
1 parent d863593 commit 4fc8577
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cfssl/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$ErrorActionPreference = "Stop";
$ErrorActionPreference = "Stop"

# Strip package YYYYMMDD postfix if present
$versionSplit = ${ENV:ChocolateyPackageVersion}.Split(".")
Expand Down Expand Up @@ -34,7 +34,7 @@ else {
$pathType = "User"
}

$installLocation = Join-Path $(Join-Path "${parentFolder}" "CloudFlare") ${packageName}
$installLocation = Join-Path $(Join-Path "${parentFolder}" "CloudFlare") "${packageName}"

Write-Output "Installing to ${installLocation}..."

Expand Down
4 changes: 2 additions & 2 deletions cfssl/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$ErrorActionPreference = 'Stop'
$ErrorActionPreference = "Stop"

$packageName = "${ENV:ChocolateyPackageName}"

Expand All @@ -8,7 +8,7 @@ $count = 0
$foundPath = $false

ForEach ($searchPath in $searchPaths) {
$testPath = Join-Path $(Join-Path "${searchPath}" "CloudFlare") ${packageName}
$testPath = Join-Path $(Join-Path "${searchPath}" "CloudFlare") "${packageName}"

if (Test-Path "${testPath}") {
if ($count -eq 0) {
Expand Down

0 comments on commit 4fc8577

Please sign in to comment.