Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Dec 4, 2023
1 parent ac0266d commit b63a2f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ function CalculateProjectsAndApps {
$excludeProjectList | ForEach-Object { Write-Host "- $_" }
foreach($mask in 'Apps','Dependencies') {
$allApps = @{}
foreach($folder in (Get-ChildItem -Path $tempFolder -Filter '*' | Where-Object { $_.PSIsContainer })) {
foreach($folder in (Get-ChildItem -Path $tempFolder | Where-Object { $_.PSIsContainer })) {
if (($folder.Name -match "^(.*)-main-$mask-(\d*\.\d*\.\d*\.\d*)$") -or
($folder.Name -match "^(.*)-release.*-$mask-(\d*\.\d*\.\d*\.\d*)$")) {
$project = $Matches[1]
Expand Down

0 comments on commit b63a2f7

Please sign in to comment.