diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-08-10 15:29:17 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-08-10 15:29:17 +0000 |
| commit | 52aa24ed4a1b0c8abeb62200f83d1c23b68f7edc (patch) | |
| tree | 86bb42413148d129e0c2495ced2bb3d383b652a2 | |
| parent | e55c630133a1b07af0cd158e8056aca606901a32 (diff) | |
| download | rust-52aa24ed4a1b0c8abeb62200f83d1c23b68f7edc.tar.gz rust-52aa24ed4a1b0c8abeb62200f83d1c23b68f7edc.zip | |
Move cleaning of y.bin to the "to be removed" section in clean_all.sh
| -rwxr-xr-x | clean_all.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clean_all.sh b/clean_all.sh index 19405a53d1c..2901c09e990 100755 --- a/clean_all.sh +++ b/clean_all.sh @@ -1,9 +1,10 @@ #!/usr/bin/env bash set -e -rm -rf target/ build_system/target download/ build/ dist/ y.bin y.bin.dSYM y.exe y.pdb +rm -rf target/ build_system/target download/ build/ dist/ # Kept for now in case someone updates their checkout of cg_clif before running clean_all.sh # FIXME remove at some point in the future +rm y.bin y.bin.dSYM y.exe y.pdb rm -rf rand/ regex/ simple-raytracer/ portable-simd/ abi-checker/ abi-cafe/ rm -rf build_sysroot/{sysroot_src/,target/,compiler-builtins/,rustc_version} |
