Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ga/latest/kernel/helpers/build/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi

. /opt/ibm/helpers/build/internal/logger.sh

set -Eeox pipefail
set -Eeo pipefail

function main() {
##Define variables for XML snippets source and target paths
Expand Down Expand Up @@ -231,4 +231,4 @@ function parseCommaList() {
done
}

main "$@"
main "$@"
2 changes: 1 addition & 1 deletion ga/latest/kernel/helpers/build/features.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
. /opt/ibm/helpers/build/internal/logger.sh

set -Eeox pipefail
set -Eeo pipefail

##Define variables for XML snippets source and target paths
SNIPPETS_SOURCE=/opt/ibm/helpers/build/configuration_snippets
Expand Down
2 changes: 1 addition & 1 deletion ga/latest/kernel/helpers/build/infinispan-client-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
. /opt/ibm/helpers/build/internal/logger.sh

set -Eeox pipefail
set -Eeo pipefail

pkgcmd=yum
if ! command $pkgcmd
Expand Down
4 changes: 3 additions & 1 deletion ga/latest/kernel/helpers/build/internal/logger.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
function main() {
if [ "$VERBOSE" != "true" ]; then
exec >/dev/null
else
set -x
fi
}

Expand All @@ -27,4 +29,4 @@ function showLogs() {
exec 1>&3 3>&- 2>&4 4>&-
}

main
main
2 changes: 1 addition & 1 deletion ga/latest/kernel/helpers/build/populate_scc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
. /opt/ibm/helpers/build/internal/logger.sh

set -Eeox pipefail
set -Eeo pipefail

# 32-bit JVMs don't supported multi-layered SCCs.
[ -e "$JAVA_HOME/lib/i386" -o -e "$JAVA_HOME/lib/ppc" -o -e "$JAVA_HOME/lib/s390" ] && exit 0
Expand Down