Skip to content

Commit

Permalink
Applying the same changes to the module component
Browse files Browse the repository at this point in the history
  • Loading branch information
HotCakeX committed Jan 17, 2024
1 parent 70bf71e commit 35a58c9
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2610,8 +2610,10 @@ IMPORTANT: Make sure to keep it in a safe place, e.g., in OneDrive's Personal Va
}
}

Write-Verbose -Message 'Removing the working directory'
Remove-Item -Recurse -Path $WorkingDir -Force -ErrorAction SilentlyContinue
if (Test-Path -Path $WorkingDir) {
Write-Verbose -Message 'Removing the working directory'
Remove-Item -Recurse -Path $WorkingDir -Force
}

Write-Verbose -Message 'Disabling progress bars'
0..2 | ForEach-Object -Process { Write-Progress -Id $_ -Activity 'Done' -Completed }
Expand Down

0 comments on commit 35a58c9

Please sign in to comment.