Skip to content

Commit

Permalink
Filter build script to directories only
Browse files Browse the repository at this point in the history
  • Loading branch information
EEParker committed Apr 5, 2024
1 parent 72b0996 commit 3aa620b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Write-Output "build: Revision: $revision"
Write-Output "build: VersionPrefix: $prefix"
Write-Output "build: VersionSuffix: $suffix"

foreach ($src in Get-ChildItem src/*) {
foreach ($src in Get-ChildItem src/* -Directory) {
Push-Location $src

Write-Output "build: Packaging project in $src"
Expand Down

0 comments on commit 3aa620b

Please sign in to comment.