asdf-community / asdf-hashicorp

HashiCorp plugin for the asdf version manager
https://github.com/asdf-vm/asdf
MIT License
239 stars 54 forks source link

Remove SC2068 exception #66

Closed rpdelaney closed 1 year ago

rpdelaney commented 1 year ago

bash handles "$@" more intelligently than one might expect. See docs: https://www.shellcheck.net/wiki/SC2068:

Double quotes around $@ (and similarly, ${array[@]}) prevents globbing and word splitting of individual elements, while still expanding to multiple separate arguments.

Fixes #65

rpdelaney commented 1 year ago

cc @nathantypanski

rpdelaney commented 1 year ago

@nathantypanski Any chance this can get merged? :)

smorimoto commented 1 year ago

Looks good to me.