Skip to content

Commit

Permalink
Remove verbose output from cleanup commands in Build-PromptFromGitHub…
Browse files Browse the repository at this point in the history
…Repo function
  • Loading branch information
dfinke committed Sep 23, 2024
1 parent 742b216 commit 0dd6097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Public/Build-PromptFromGitHubRepo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ function Build-PromptFromGitHubRepo {
Write-Verbose "[$(Get-Date)] $DestinationPath"
Build-PromptFromFiles $targetFullName

$null = Remove-Item $OutFile -Force -Verbose:$Verbose
$null = Remove-Item $DestinationPath -Recurse -Force -Verbose:$Verbose
$null = Remove-Item $OutFile -Force
$null = Remove-Item $DestinationPath -Recurse -Force
}

0 comments on commit 0dd6097

Please sign in to comment.