Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
Kevin Decherf
2021-03-30 22:14:34 +02:00
parent 13818bd90e
commit 3ee10895d8
21 changed files with 172 additions and 2965 deletions

5
apply-patches.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
for i in $(find /opt/wallabag/patches/ -type f -name "*.patch" | sort); do
(cd /var/www/html ; echo "Applying ${i}" ; patch -p1 < ${i})
done