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