1
0
mirror of https://github.com/wallabag/docker synced 2025-12-13 09:46:27 +00:00
Files
docker-wallabag/apply-patches.sh
Kevin Decherf 3ee10895d8 wip
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2021-03-30 22:14:34 +02:00

6 lines
157 B
Bash
Executable File

#!/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