From 0b1530a40516da6a9736d41488d1a7c9db9f8210 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Tue, 28 Jul 2026 22:12:31 +0100 Subject: [PATCH] Refine Bun installation script in Jenkinsfile - Simplified the error handling in the Bun installation script by removing the 'pipefail' option. - Ensured the script remains robust while maintaining compatibility across Unix environments. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 59d8bf5..4e2fcd4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ properties([ def ensureBunInstalled() { if (isUnix()) { sh ''' - set -euo pipefail + set -eu export BUN_INSTALL="${HOME}/.bun" export PATH="${BUN_INSTALL}/bin:${PATH}" if ! command -v bun >/dev/null 2>&1; then