From b73e0c1cab5c5b9fb45b5ce5bee319ee836fa20f Mon Sep 17 00:00:00 2001 From: Evan Sullivan Date: Mon, 30 Sep 2024 14:18:44 +0000 Subject: [PATCH] bug: only skip bootstrap when we have certs --- bootstrapper/bootstrapper.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrapper/bootstrapper.sh b/bootstrapper/bootstrapper.sh index b62d6f23..1b2d5f47 100644 --- a/bootstrapper/bootstrapper.sh +++ b/bootstrapper/bootstrapper.sh @@ -1,9 +1,9 @@ #!/bin/sh -if [ -f "$STEP_ROOT" ]; +if [ -f "$STEP_ROOT" ] && [ -f "$CRT" ] && [ -f "$KEY" ]; then - echo "Found existing $STEP_ROOT, skipping bootstrap" + echo "Found existing $STEP_ROOT, $CRT, and $KEY, skipping bootstrap" exit 0 fi