From 21433011074ecc72620e6d4310a987e214fabfca Mon Sep 17 00:00:00 2001 From: Kshitij Date: Mon, 7 Oct 2024 01:25:41 +0530 Subject: [PATCH] fixed if statements, line 93, 96, 99 --- setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.sh b/setup.sh index c1a04a4..fa421af 100755 --- a/setup.sh +++ b/setup.sh @@ -90,13 +90,13 @@ sudo raspi-config nonint do_ssh 0 sudo raspi-config nonint do_camera 0 sudo raspi-config nonint disable_raspi_config_at_boot 0 -if [! dpkg -l | grep -q i2c-tools]; then +if [ ! dpkg -l | grep -q i2c-tools ]; then sudo apt install -y i2c-tools fi -if [! dpkg -l | grep -q libgpiod-dev]; then +if [ ! dpkg -l | grep -q libgpiod-dev ]; then sudo apt install -y i2c-tools fi -if [! dpkg -l | grep -q python3-libgpiod]; then +if [ ! dpkg -l | grep -q python3-libgpiod ]; then sudo apt install -y i2c-tools fi