Skip to content

Commit

Permalink
Merge pull request #174 from theohbrothers/refactor/entrypoint-improv…
Browse files Browse the repository at this point in the history
…e-processing-of-release-assets

Refactor (entrypoint): Improve processing of release assets
  • Loading branch information
joeltimothyoh authored Aug 13, 2024
2 parents 98a62c7 + ea34ff6 commit ebe7b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/ci/Invoke-Release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ try {
"Release assets (Specified):" | Write-Verbose
$private:releaseAssetsArr | Out-String -Stream | % { $_.Trim() } | ? { $_ } | Write-Verbose
Push-Location $private:ProjectDir
$private:assets = $private:releaseAssetsArr | % { Resolve-Path -Path $_ }
$private:assets = $private:releaseAssetsArr | % { Convert-Path -Path $_ }
if (!$private:assets) { throw "No assets of the specified release assets file pattern could be found." }
}catch {
throw
Expand Down

0 comments on commit ebe7b11

Please sign in to comment.