From 959e001edddb1a4c895bfe9a7f08d0de4d20c29b Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Tue, 9 Nov 2021 14:11:19 +0200 Subject: [PATCH] fix: revert removal of eval for shell commands Fixes: #1434 --- install | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/install b/install index eb2818ee2..c1763e0f2 100755 --- a/install +++ b/install @@ -110,9 +110,12 @@ function loud() { function loudCmd() { if [[ ${_q} -eq 0 ]]; then verbose "$@" - "$@" + # Disable the shellcheck until quoting can be corrected + # shellcheck disable=2294 + eval "$@" else - "$@" > /dev/null + # shellcheck disable=2294 + eval "$@" > /dev/null fi }