remove zsh setopt

This commit is contained in:
Ido Abramovich 2018-07-31 17:30:11 +03:00
parent 4eefa62936
commit f5c0ed1679
No known key found for this signature in database
GPG key ID: 0415476C650A9945

View file

@ -169,8 +169,7 @@ __forgit_ignore_get() {
echo $@ |xargs -I{} bash -c "cat $FORGIT_GI_CACHE/{} 2>/dev/null || (curl -sL https://www.gitignore.io/api/{} |tee $FORGIT_GI_CACHE/{})"
}
__forgit_ignore_clean() {
setopt localoptions rmstarsilent
[[ -d $FORGIT_GI_CACHE ]] && rm -rf $FORGIT_GI_CACHE/*
[[ -d $FORGIT_GI_CACHE ]] && rm -rf $FORGIT_GI_CACHE
}