Update checkForExpect()

This commit is contained in:
Santiago Lo Coco 2022-01-02 23:50:56 -03:00
parent 911fa2aa0b
commit 65315340ea
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ checkForParu() {
checkForExpect() { checkForExpect() {
commOutput=$(command -v paru > /dev/null 2>&1 || echo 1) commOutput=$(command -v paru > /dev/null 2>&1 || echo 1)
if [ "$commOutput" = "1" ]; then if [ "$commOutput" = "1" ]; then
pacman -S expect pacman -S --needed --noconfirm expect
fi fi
} }