Some parts of ipc-sshtunnel.sh use spaces for indentation and tabs
for alignment, but tabs should be used for indentation and spaces
for alignment.
This commit fixes the indentation and alignment in ipc-sshtunnel.
main() {
declare -gxa input_topics
- declare -gxa output_topics
- declare -gxa tap_hooks
- declare -gxa inject_hooks
+ declare -gxa output_topics
+ declare -gxa tap_hooks
+ declare -gxa inject_hooks
local remote
input_topics=()
opt_add_arg "o" "output-topic" "v" "" "Topic to relay to the remote side (may be used more than once)" \
"" _array_add
opt_add_arg "T" "tap-hook" "v" "" "Hook to pass to ipc-tap" \
- "" _array_add
+ "" _array_add
opt_add_arg "I" "inject-hook" "v" "" "Hook to pass to ipc-inject" \
- "" _array_add
+ "" _array_add
opt_add_arg "r" "remote" "rv" "" "Address of the remote side"
if ! opt_parse "$@"; then