Skip to content

Commit

Permalink
Improve robustness of packaging script
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherMann authored Nov 21, 2024
1 parent 5f7e2a0 commit 95bf9ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/Package-PsModule.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $moduleAssemblyPath = Join-Path $modulePath ($isWindowsPowershell ? 'desktop' :

# Prepare the output directory
if (-not (Test-Path $modulePath)) {
$null = New-Item -ItemType Directory -Path $modulePath
$null = New-Item -ItemType Directory -Path $modulePath -ErrorAction SilentlyContinue
}

# Copy the build output
Expand Down

0 comments on commit 95bf9ef

Please sign in to comment.