• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3if test -f /etc/debian_version; then
4    apt-get autoremove -y --purge
5fi
6
7# Clean up any build cache for rust.
8rm -rf /.cargo
9
10ccache --show-stats
11