mirror of
https://github.com/wallabag/docker
synced 2026-06-14 18:40:20 +00:00
3ee10895d8
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
6 lines
157 B
Bash
Executable File
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
|