We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abc8991 commit ff5ed3bCopy full SHA for ff5ed3b
build/wiki-command-replacer.sh
@@ -42,8 +42,9 @@ execute_command() {
42
validate_tokens
43
add_default_options
44
45
- echo >&2 " INFO: running: ${EXECUTABLE_COMMAND[@]}"
46
- ${EXECUTABLE_COMMAND[@]}
+ echo >&2 " INFO: running: " "${EXECUTABLE_COMMAND[@]}"
+ read -ra executable <<<"${EXECUTABLE_COMMAND[@]}"
47
+ "${executable[@]}"
48
}
49
50
if [[ -z "${CI:-}" ]]; then
0 commit comments