Update saveVar()
This commit is contained in:
parent
1afeff00d8
commit
9b5ce2ca52
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue