From 8b798882667b2a03d7a8ef04c014b248ff1a52c6 Mon Sep 17 00:00:00 2001 From: Angus Hollands Date: Fri, 5 Sep 2025 09:54:22 +0100 Subject: [PATCH] fix: allow startup command to fail, remove `x` opt --- start | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/start b/start index 492f1bc..4a600c5 100755 --- a/start +++ b/start @@ -1,6 +1,7 @@ #!/usr/bin/env bash -set -eux +set -eu -jupyter nbconvert --execute --inplace climaterisk/book/Startup.ipynb +# Allow this specific command to fail +jupyter nbconvert --execute --inplace climaterisk/book/Startup.ipynb || true -exec "$@" \ No newline at end of file +exec "$@"