From 058ef7eed4530d08e4c558a91f6879206a3ddef0 Mon Sep 17 00:00:00 2001 From: Philip Patsch Date: Thu, 12 May 2022 12:30:39 +0200 Subject: [PATCH] fix: only use -e MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -euo will stumble on unbound variables in /etc/profile for some reason. I thought --noprofile would disable that file, but looks like it’s sourced nonetheless? This is all very bad. --- dist/post/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/post/index.js b/dist/post/index.js index 5201d12..694a532 100644 --- a/dist/post/index.js +++ b/dist/post/index.js @@ -1754,7 +1754,7 @@ function exec(commandLine, args, options) { const runner = new tr.ToolRunner( "bash", [ "--noprofile", - "-euo", "pipefail", + "-e", "-c", commandLine ], options