mirror of
https://github.com/wallabag/docker.git
synced 2026-02-28 04:37:34 +01:00
6 lines
157 B
Bash
6 lines
157 B
Bash
|
|
#!/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
|