Première version

This commit is contained in:
2025-07-31 16:03:18 +02:00
commit 1893f8375e
6 changed files with 161 additions and 0 deletions

12
unapply_patches.sh Normal file
View 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