Première version
This commit is contained in:
12
unapply_patches.sh
Normal file
12
unapply_patches.sh
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
patches_root="$(pwd)/patches.d/"
|
||||
|
||||
for patch_file in $(find $patches_root -name "*.patch")
|
||||
do
|
||||
pushd /
|
||||
patch -p0 -R < $patch_file
|
||||
popd
|
||||
done
|
||||
|
||||
exit 0
|
Reference in New Issue
Block a user