mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-22 07:20:59 +02:00
varstash: fix pattern in stash
This commit is contained in:
parent
07abe9cea8
commit
be306b1178
@ -175,9 +175,9 @@ function stash() {
|
||||
local vartype="$(declare -p $stash_which 2>/dev/null)"
|
||||
if [[ -n $vartype ]]; then
|
||||
if [[ -n $ZSH_VERSION ]]; then
|
||||
local pattern="^typeset"
|
||||
local pattern="typeset"
|
||||
else
|
||||
local pattern="^declare"
|
||||
local pattern="declare"
|
||||
fi
|
||||
if [[ $vartype == $pattern" -a"* ]]; then
|
||||
# varible is an array
|
||||
|
Loading…
Reference in New Issue
Block a user