Update loadVar()

This commit is contained in:
Santiago Lo Coco 2022-01-29 13:19:09 -03:00
parent 3a6a7233fc
commit 4b498f0eb7
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ saveVar() {
}
loadVar() {
var=$(grep "$1=" calsais.vars | cut -d= -f2)
[ -f "calsais.vars" ] && var=$(grep "$1=" calsais.vars | cut -d= -f2) || var=""
export "$1"="$var"
}