From 78a81ab5097fb0633ab46b6f1a6688c767c204ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Thu, 21 Mar 2019 22:27:28 +0100 Subject: [PATCH] Fail early on certbot failures --- tutor/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutor/local.py b/tutor/local.py index c2f6407..5a0f359 100644 --- a/tutor/local.py +++ b/tutor/local.py @@ -182,7 +182,7 @@ See the official certbot documentation for your platform: https://certbot.eff.or "-p", "80:80", "--entrypoint=sh", "certbot/certbot:latest", - "-c", script, + "-e", "-c", script, ) @click.command(help="Renew https certificates", name="renew")