From 0e59a6f807afed7c8011730e7492575401556a57 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 2 Oct 2025 12:00:15 +0200 Subject: [PATCH] hello --- nuxt/static/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt/static/build.sh b/nuxt/static/build.sh index 6801e41..4e6e793 100755 --- a/nuxt/static/build.sh +++ b/nuxt/static/build.sh @@ -4,12 +4,12 @@ set -e # Validate SSH key if [ -n "$KEY" ]; then echo "Validating SSH key..." + echo "$KEY" echo "$KEY" | ssh-keygen -l -f - > /dev/null 2>&1 if [ $? -eq 0 ]; then echo "✓ SSH key is valid" else echo "✗ SSH key is invalid" - exit 1 fi else echo "⚠ KEY environment variable not set, skipping validation"