Update saveVar()

This commit is contained in:
Santiago Lo Coco 2022-01-28 12:07:06 -03:00
parent 1afeff00d8
commit 9b5ce2ca52
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ grubSetUp() {
saveVar() {
[ ! -f "calsais.vars" ] && touch calsais.vars
if [ -z "$(grep "$1" calsais.vars)" ]; then
if ! grep "$1" calsais.vars; then
echo "$1=$2" >> calsais.vars
else
sed -i "s|$1=.*|$1=$2|" calsais.vars