remove-stale-files (8f99eb857a96d474bfbb715ff9073b276b87ad2d) | remove-stale-files (c83b16cefd78f55071840e1159ead9fe62747769) |
---|---|
1#!/bin/sh 2 3set -e 4 5# When you move, remove or rename generated files, you probably also update 6# .gitignore and cleaning rules in the Makefile. This is the right thing 7# to do. However, people usually do 'git pull', 'git bisect', etc. without 8# running 'make clean'. Then, the stale generated files are left over, often --- 13 unchanged lines hidden (view full) --- 22 23rm -f arch/powerpc/purgatory/kexec-purgatory.c 24rm -f arch/riscv/purgatory/kexec-purgatory.c 25rm -f arch/x86/purgatory/kexec-purgatory.c 26 27rm -f scripts/extract-cert 28 29rm -f scripts/kconfig/[gmnq]conf-cfg | 1#!/bin/sh 2 3set -e 4 5# When you move, remove or rename generated files, you probably also update 6# .gitignore and cleaning rules in the Makefile. This is the right thing 7# to do. However, people usually do 'git pull', 'git bisect', etc. without 8# running 'make clean'. Then, the stale generated files are left over, often --- 13 unchanged lines hidden (view full) --- 22 23rm -f arch/powerpc/purgatory/kexec-purgatory.c 24rm -f arch/riscv/purgatory/kexec-purgatory.c 25rm -f arch/x86/purgatory/kexec-purgatory.c 26 27rm -f scripts/extract-cert 28 29rm -f scripts/kconfig/[gmnq]conf-cfg |
30 31rm -f rust/target.json |
|