9 lines
115 B
Bash
Executable File
9 lines
115 B
Bash
Executable File
#!/bin/sh
|
|
|
|
apt-get autoremove -y --purge
|
|
|
|
# Clean up any build cache for rust.
|
|
rm -rf /.cargo
|
|
|
|
ccache --show-stats
|