Merge pull request #2567 from AiyionPrime/fix-make-lint

Fix make lint
This commit is contained in:
Andreas Ziegler 2022-06-25 01:05:43 +02:00 committed by GitHub
commit 62fb2c8a47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ export BROKEN=1
export GLUON_AUTOREMOVE=1 export GLUON_AUTOREMOVE=1
export GLUON_DEPRECATED=1 export GLUON_DEPRECATED=1
export GLUON_SITEDIR="contrib/ci/minimal-site" export GLUON_SITEDIR="contrib/ci/minimal-site"
export GLUON_TARGET=$1 export GLUON_TARGET="$1"
export BUILD_LOG=1 export BUILD_LOG=1
make update make update

View File

@ -37,7 +37,7 @@ proto_gluon_bat0_renew() {
proto_gluon_bat0_setup() { proto_gluon_bat0_setup() {
local config="$1" local config="$1"
local routing_algo=$(lookup_site 'mesh.batman_adv.routing_algo' 'BATMAN_IV') local routing_algo="$(lookup_site 'mesh.batman_adv.routing_algo' 'BATMAN_IV')"
local gw_mode local gw_mode
json_get_vars gw_mode json_get_vars gw_mode

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
set -euo pipefail set -eu
echo "Entering setup mode and rebooting..." echo "Entering setup mode and rebooting..."
uci set gluon-setup-mode.@setup_mode[0].enabled='1' uci set gluon-setup-mode.@setup_mode[0].enabled='1'