mirror of
https://github.com/wallabag/docker.git
synced 2026-02-23 18:27:33 +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
|