Skip to content

Commit 8aa148f

Browse files
committed
debug
1 parent 4f24ef8 commit 8aa148f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release-metadata.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,21 @@ jobs:
6464
# Create directory structure and copy recipe
6565
rel_path=$(dirname "$recipe")
6666
if [ "$pkg_type" = "static" ] || [ "$pkg_type" = "dynamic" ]; then
67+
echo "BINCACHE: $recipe (pkg_type: $pkg_type)"
6768
mkdir -p "/tmp/bincache-recipes/$rel_path"
6869
cp "$recipe" "/tmp/bincache-recipes/$recipe"
6970
else
71+
echo "PKGCACHE: $recipe (pkg_type: $pkg_type)"
7072
mkdir -p "/tmp/pkgcache-recipes/$rel_path"
7173
cp "$recipe" "/tmp/pkgcache-recipes/$recipe"
7274
fi
7375
done
7476
7577
echo "=== Bincache recipes (static/dynamic) ==="
76-
find /tmp/bincache-recipes -name "*.yaml" 2>/dev/null | wc -l
78+
find /tmp/bincache-recipes -name "*.yaml" -type f
7779
7880
echo "=== Pkgcache recipes (other pkg_types) ==="
79-
find /tmp/pkgcache-recipes -name "*.yaml" 2>/dev/null | wc -l
81+
find /tmp/pkgcache-recipes -name "*.yaml" -type f
8082
8183
- name: Generate bincache metadata
8284
env:

0 commit comments

Comments
 (0)