mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2025-12-14 10:15:12 +02:00
varstash: fix pattern in stash
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user