Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenliang123 committed Oct 21, 2024
1 parent 613ed6b commit 528a9a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/free_disk_space.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ echo "Free up disk space on CI system"
echo "=================================="

echo "Listing 100 largest packages"
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100
dpkg-query -f '${Installed-Size}\t${Package}\n' -W | sort -n | tail -n 100
df -h

echo "Removing large packages"
Expand Down Expand Up @@ -58,4 +58,4 @@ sudo apt-get autoremove --purge -y \
df -h

echo "Listing 100 largest packages after removal"
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100
dpkg-query -f '${Installed-Size}\t${Package}\n' -W | sort -n | tail -n 100

0 comments on commit 528a9a9

Please sign in to comment.