Merge pull request #289 from trws/zsh-array-fix

another portability fix, this time for zsh/non-bash sh
This commit is contained in:
Todd Gamblin 2016-01-05 00:43:08 -08:00
commit 0dcc87bd21

View file

@ -58,7 +58,7 @@
function spack {
# save raw arguments into an array before butchering them
declare -a args=( "$@" )
args=( "$@" )
# accumulate initial flags for main spack command
_sp_flags=""