mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-21 06:35:53 +00:00
9 lines
115 B
Bash
9 lines
115 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
apt-get autoremove -y --purge
|
||
|
|
||
|
# Clean up any build cache for rust.
|
||
|
rm -rf /.cargo
|
||
|
|
||
|
ccache --show-stats
|