mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
scripts/iiab-network: Lint bash conditional, for #3308
This commit is contained in:
parent
b221e0ca0a
commit
1d1ef405a9
1 changed files with 1 additions and 1 deletions
|
@ -2,6 +2,6 @@
|
||||||
cd /opt/iiab/iiab
|
cd /opt/iiab/iiab
|
||||||
sudo ./iiab-network
|
sudo ./iiab-network
|
||||||
rc=$?
|
rc=$?
|
||||||
if [ “${rc}” == “0” ]; then
|
if [[ $rc == "0" ]]; then
|
||||||
sudo touch /etc/iiab/install-flags/iiab-network-complete
|
sudo touch /etc/iiab/install-flags/iiab-network-complete
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue