fixed shell lint - escape array

pull/164/head
Vit Listik 4 years ago
parent d4bbfaa9f6
commit 36c275afe0
No known key found for this signature in database
GPG Key ID: DDDF5138DA46D76B
  1. 2
      scripts/reshctl.sh

@ -109,7 +109,7 @@ __resh_unbind_all() {
resh() {
local buffer
local git_remote; git_remote="$(git remote get-url origin 2>/dev/null)"
buffer=$(resh-cli --sessionID "$__RESH_SESSION_ID" --host "$__RESH_HOST" --pwd "$PWD" --gitOriginRemote "$git_remote" $@)
buffer=$(resh-cli --sessionID "$__RESH_SESSION_ID" --host "$__RESH_HOST" --pwd "$PWD" --gitOriginRemote "$git_remote" "$@")
status_code=$?
if [ $status_code = 111 ]; then
# execute

Loading…
Cancel
Save