correct quoting

This commit is contained in:
buanet
2023-02-20 11:58:08 +01:00
parent a17e0e4026
commit 6f83191969
4 changed files with 76 additions and 76 deletions

View File

@@ -5,12 +5,12 @@ then
echo '[setup_zwave.sh] Openzwave is already installed. Nothing to do here.'
else
echo -n '[setup_zwave.sh] Openzwave is NOT installed. Going to install it now... '
cd /opt
cd /opt || exit
curl -s -L -O http://old.openzwave.com/downloads/openzwave-1.6.1007.tar.gz
tar -xf openzwave-1.6.1007.tar.gz && rm openzwave-1.6.1007.tar.gz
cd openzwave-1.6.1007 && make > /dev/null 2>&1 && make install > /dev/null 2>&1
ldconfig /usr/local/lib64
cd /opt/iobroker
cd /opt/iobroker || exit
echo 'Done.'
fi