Skip to content

Commit d739a7b

Browse files
pandafynemesifier
authored andcommitted
[qa] Fixed openwisp.agent
1 parent 1ebbb7c commit d739a7b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

openwisp-config/files/openwisp.agent

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,10 @@ perform_default_test() {
690690
fi
691691
done
692692
rm $TEST_CHECKSUM
693-
return $result
693+
# "$result" contains the exit code (integer),
694+
# hence does not required to be wrapped in quotes.
695+
# shellcheck disable=SC2086
696+
return "$result"
694697
}
695698

696699
# stores unmanaged configuration sections that will be merged

0 commit comments

Comments
 (0)