add a small script to clean up all those damn files that patch leaves lying around
This commit is contained in:
6
cleanup-patch-crap.sh
Executable file
6
cleanup-patch-crap.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
#clean up files left over from a patching session
|
||||
#only run right before you commit!
|
||||
|
||||
find . -name "*.orig" | xargs rm
|
||||
find . -name "*.rej" | xargs rm
|
||||
Reference in New Issue
Block a user