summaryrefslogtreecommitdiff
path: root/tools/docker/entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/docker/entrypoint.sh')
-rwxr-xr-xtools/docker/entrypoint.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/docker/entrypoint.sh b/tools/docker/entrypoint.sh
index 997b876..afa8533 100755
--- a/tools/docker/entrypoint.sh
+++ b/tools/docker/entrypoint.sh
@@ -69,9 +69,10 @@ fi
for x in /tmp/requirements-*.txt; do
if ! cmp $x ~/patchwork/$(basename $x); then
echo "A requirements file has changed."
- echo "Please rebuild the patchwork image:"
+ echo "You may need to rebuild the patchwork image:"
echo " docker-compose build web"
- exit 1
+ echo ""
+ diff -u $x ~/patchwork/$(basename $x)
fi
done