From de2eca7445ee15e372283e45d5f7a6fe555bdfad Mon Sep 17 00:00:00 2001 From: ronivay Date: Mon, 5 Jul 2021 12:20:06 +0300 Subject: [PATCH] ignore SC2094 in runcmd_stdout --- xo-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/xo-install.sh b/xo-install.sh index 4dd2631..2514404 100755 --- a/xo-install.sh +++ b/xo-install.sh @@ -103,6 +103,7 @@ function runcmd { function runcmd_stdout { echo "+ $1" >>"$LOGFILE" + # shellcheck disable=SC2094 bash -c -o pipefail "$1" 2>>"$LOGFILE" | tee -a "$LOGFILE" }