From 906e8c88936143e81312e979a3ed471761098007 Mon Sep 17 00:00:00 2001 From: Richard Robert Reitz Date: Thu, 2 Oct 2025 14:37:40 +0200 Subject: [PATCH] fix(action): return return value of client --- endpoint.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/endpoint.sh b/endpoint.sh index 5ebb322..5e7645b 100755 --- a/endpoint.sh +++ b/endpoint.sh @@ -29,6 +29,8 @@ main() { # The CLI uses an interactive prompt, so we need to pipe "yes" to it. yes | "${cli_path}" apply "${args[@]}" + + exit $? } -main \ No newline at end of file +main