Skip to content

Commit

Permalink
[qa] Fixed openwisp.agent
Browse files Browse the repository at this point in the history
  • Loading branch information
pandafy committed Sep 25, 2024
1 parent af52a0d commit 3827c29
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion openwisp-config/files/openwisp.agent
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,10 @@ perform_default_test() {
fi
done
rm $TEST_CHECKSUM
return $result
# "$result" contains the exit code (integer),
# hence does not required to be wrapped in quotes.
# shellcheck disable=SC2086
return "$result"
}

# stores unmanaged configuration sections that will be merged
Expand Down

0 comments on commit 3827c29

Please sign in to comment.