From ab6bf8bf7403e8023a094abeec19d6753bdc143e Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Mon, 4 Nov 2024 23:48:37 +0000 Subject: [PATCH] bug: Propagate errors from micromamba-shell (#241) --- package.json | 2 +- src/resources/micromamba-shell | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 19b0184..73a97cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-micromamba", - "version": "2.0.0", + "version": "2.0.1", "private": true, "description": "Action to setup micromamba", "scripts": { diff --git a/src/resources/micromamba-shell b/src/resources/micromamba-shell index 20801eb..3b1c8e5 100755 --- a/src/resources/micromamba-shell +++ b/src/resources/micromamba-shell @@ -4,4 +4,4 @@ # The script then executes the contents of the file. chmod +x $1 -$MAMBA_EXE run -r $MAMBA_ROOT_PREFIX -n $MAMBA_DEFAULT_ENV $1 +exec $MAMBA_EXE run -r $MAMBA_ROOT_PREFIX -n $MAMBA_DEFAULT_ENV $1