Skip to content
Snippets Groups Projects
Verified Commit eb2e5f9e authored by Hugo Renard's avatar Hugo Renard
Browse files

ci: exit on failed patch

parent 93dcc396
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ RUN for app in $(cat /usr/src/nextcloud/apps/nextcloud.json | jq -r .remove[]);d
rm /usr/src/nextcloud/config/autoconfig.php /usr/src/nextcloud/config/config.sample.php;
RUN for patch in /usr/src/nextcloud/patches/*.diff; \
do \
patch -p0 < $patch; \
patch -p0 < $patch || exit 1; \
done; \
rm -r /usr/src/nextcloud/patches/;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment