Skip to content

Commit

Permalink
Replace mentions of SCRIPT_DEBUG with LOGGING_SCRIPT_DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
jfdenise committed Oct 10, 2024
1 parent 7e1fb60 commit e68a210
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

if [ "${SCRIPT_DEBUG}" = "true" ] ; then
if [ "${LOGGING_SCRIPT_DEBUG}" = "true" ] ; then
set -x
echo "Script debugging is enabled, allowing bash commands and their arguments to be printed as they are executed"
fi
Expand Down
2 changes: 1 addition & 1 deletion wildfly-builder-image/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ labels:
- name: "org.jboss.deployments-dir"
value: "/opt/server/standalone/deployments"
envs:
- name: SCRIPT_DEBUG
- name: LOGGING_SCRIPT_DEBUG
description: If set to true, ensures that the bash scripts are executed with the -x option, printing the commands and their arguments as they are executed.
example: "true"
- name: IMAGE_NAME
Expand Down
2 changes: 1 addition & 1 deletion wildfly-runtime-image/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ labels:
- name: "org.jboss.deployments-dir"
value: "/opt/server/standalone/deployments"
envs:
- name: SCRIPT_DEBUG
- name: LOGGING_SCRIPT_DEBUG
description: If set to true, ensures that the bash scripts are executed with the -x option, printing the commands and their arguments as they are executed.
example: "true"
- name: IMAGE_NAME
Expand Down

0 comments on commit e68a210

Please sign in to comment.