Skip to content

Commit c8cba33

Browse files
🔨 Add SONAR_LOG_LEVEL_WEB environment variable
1 parent 02f6f5b commit c8cba33

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.default.docker.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
MAVEN_BUILDER_VERSION=3-openjdk-17-slim
22
SONARQUBE_VERSION=10.6.0-community
33
POSTGRES_VERSION=12
4+
SONAR_LOG_LEVEL_WEB=INFO
45
DOCKER_BUILDKIT=1
56
COMPOSE_DOCKER_CLI_BUILD=1

toolbox.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ function execute_unit_test() {
284284
error "No function to execute" && return 1
285285
fi
286286
# If a function is passed as the first argument, we check that it exists
287-
if [[ -n "${ARGS[0]}" ]] && ! [[ $(type -t "${ARGS[0]}") == function ]]; then
287+
if ! [[ $(type -t "${ARGS[0]}") == function ]]; then
288288
error "Function with name ${ARGS[0]} does not exist" && return 2
289289
fi
290290
# Initialize fixtures

0 commit comments

Comments
 (0)