Skip to content
This repository was archived by the owner on Mar 5, 2024. It is now read-only.

Commit e06ac82

Browse files
committed
exclude dot folders
1 parent 9764d9e commit e06ac82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ccpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ jobs:
453453
ls msixbundle_container/* | xargs mv -t .
454454
rm -rv msixbundle_container
455455
456-
for folder in `find . -maxdepth 1 -type d`; do
456+
for folder in `find . -not -path '*/\.*' -maxdepth 1 -type d`; do
457457
echo "Zipping $folder..."
458458
cd "$folder"
459459
zip -9 -r "../$folder.zip" .

0 commit comments

Comments
 (0)