Skip to content
Snippets Groups Projects
Commit 4060c44e authored by Bob Mottram's avatar Bob Mottram
Browse files

Fix static analysis failures

parent c4b091c2
No related branches found
No related tags found
No related merge requests found
......@@ -339,6 +339,7 @@ function cryptpad_create_config {
}
function mesh_install_cryptpad {
# shellcheck disable=SC2153
if [[ "$VARIANT" != "meshclient" && "$VARIANT" != "meshusb" ]]; then
return
fi
......
......@@ -618,6 +618,7 @@ function peertube_create_config {
}
function mesh_install_peertube {
# shellcheck disable=SC2153
if [[ "$VARIANT" != "meshclient" && "$VARIANT" != "meshusb" ]]; then
return
fi
......
......@@ -756,6 +756,7 @@ function pelican_themes {
}
function mesh_install_pelican {
# shellcheck disable=SC2153
if [[ "$VARIANT" != "meshclient" && "$VARIANT" != "meshusb" && "$VARIANT" != "usb" ]]; then
return
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment