1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-14 20:22:08 +00:00

scripts/iiab-network: Lint bash conditional, for #3308

This commit is contained in:
A Holt 2022-07-14 11:53:11 -04:00 committed by GitHub
parent b221e0ca0a
commit 1d1ef405a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,6 @@
cd /opt/iiab/iiab
sudo ./iiab-network
rc=$?
if [ “${rc}” == “0” ]; then
if [[ $rc == "0" ]]; then
sudo touch /etc/iiab/install-flags/iiab-network-complete
fi