Merge branch 'ci/fix_utils_sh_with_dash' into 'master'

ci: fix bash shell array incompatibility in dash

See merge request espressif/esp-idf!18487
This commit is contained in:
Ivan Grokhotkov
2022-06-14 13:05:17 +08:00

View File

@@ -62,8 +62,7 @@ function warning() {
}
function run_cmd() {
local args=( "$@" )
local cmd="${args[@]}"
local cmd="$*"
local start=$(date +%s)
info "\$ ${cmd}"