Skip to content

Commit 68c511c

Browse files
committed
.github/workflows: remove threshold 50m to show all files
There are still some files under /mnt. We would like to know which ones are they so that we can delete them. Signed-off-by: André Martins <andre@cilium.io>
1 parent a3fe297 commit 68c511c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/build-images-ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,10 @@ jobs:
9494
df -h
9595
echo "# Usage for /mnt"
9696
sudo du --human-readable \
97-
--threshold 50m \
9897
-- /mnt
9998
if compgen -G "/mnt/.*" > /dev/null; then
10099
echo "# Hidden files in /mnt:"
101-
sudo du --human-readable --threshold 50m -- /mnt/.* 2>/dev/null
100+
sudo du --human-readable -- /mnt/.* 2>/dev/null
102101
fi
103102
echo "# Removing /mnt/tmp-pv.img"
104103
sudo rm -f '/mnt/tmp-pv.img'

0 commit comments

Comments
 (0)