From 45a1c7b27150224b8da73d607ece74c49124f83e Mon Sep 17 00:00:00 2001 From: Alexandre Alves Date: Fri, 11 Apr 2025 09:51:31 +0100 Subject: [PATCH] add pipefail to publish script + bump shell version (#13967) --- shell/package.json | 2 +- shell/scripts/extension/publish | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/package.json b/shell/package.json index e8e65eb413..4001a79d9a 100644 --- a/shell/package.json +++ b/shell/package.json @@ -1,6 +1,6 @@ { "name": "@rancher/shell", - "version": "3.0.4", + "version": "3.0.5-rc.1", "description": "Rancher Dashboard Shell", "repository": "https://github.com/rancherlabs/dashboard", "license": "Apache-2.0", diff --git a/shell/scripts/extension/publish b/shell/scripts/extension/publish index 1208a00893..740040b50e 100755 --- a/shell/scripts/extension/publish +++ b/shell/scripts/extension/publish @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -eo pipefail SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" BASE_DIR="$(pwd)"