We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b64a9ad commit 0702f08Copy full SHA for 0702f08
tools/GenerateModules.ps1
@@ -116,7 +116,7 @@ $ModuleToGenerate | ForEach-Object {
116
# Check if there is any folder with autorest in the name
117
$AutoRestTempFolder = Get-ChildItem -Path $TempPath -Recurse -Directory | Where-Object { $_.Name -match "autorest" }
118
# Go through each folder and forcefully close any open files
119
- $AutoRestTempFolder | ForEach-Object {
+ $AutoRestTempFolder | ForEach-Object -Parallel {
120
$AutoRestTempFolder = $_
121
#Delete files and folders if they exist
122
if (Test-Path $AutoRestTempFolder.FullName) {
0 commit comments