Merge pull request #289 from trws/zsh-array-fix
another portability fix, this time for zsh/non-bash sh
This commit is contained in:
commit
0dcc87bd21
1 changed files with 1 additions and 1 deletions
|
@ -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=""
|
||||
|
|
Loading…
Reference in a new issue