mirror of
https://github.com/rust-lang/cargo
synced 2024-11-05 18:50:39 +00:00
8 lines
134 B
Bash
Executable file
8 lines
134 B
Bash
Executable file
#!/bin/bash
|
|
# This script remove test and benchmark output and displays disk usage.
|
|
|
|
set -euo pipefail
|
|
|
|
df -h
|
|
rm -rf target/tmp
|
|
df -h
|