X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/07c2c9a3c4cc30da1f60df8c5b1c774466fadf6b..29b8323849e82549d4a23f125daf050dd4ed66f4:/vim/ultisnips/sh.snippets diff --git a/vim/ultisnips/sh.snippets b/vim/ultisnips/sh.snippets index 8393d02..1ea5c21 100644 --- a/vim/ultisnips/sh.snippets +++ b/vim/ultisnips/sh.snippets @@ -36,7 +36,7 @@ while [[ $# -gt 0 ]]; do echo -e "\n Option does not exist : $opt\n" usage; exit 1 ;; - *) args+=($opt); shift ;; + *) args+=("$opt"); shift ;; esac done endsnippet