10 lines
159 B
Bash
Executable file
10 lines
159 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if test -f /etc/debian_version; then
|
|
apt-get autoremove -y --purge
|
|
fi
|
|
|
|
# Clean up any build cache for rust.
|
|
rm -rf /.cargo
|
|
|
|
ccache --show-stats
|