mirror of
https://github.com/wallabag/docker
synced 2025-12-13 09:46:27 +00:00
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
|