Skip to content
Snippets Groups Projects
Unverified Commit 62fb2c8a authored by Andreas Ziegler's avatar Andreas Ziegler Committed by GitHub
Browse files

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

Fix make lint
parents 10eca3ba ca37f203
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ export BROKEN=1 ...@@ -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
......
...@@ -37,7 +37,7 @@ proto_gluon_bat0_renew() { ...@@ -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
......
#!/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'
......
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