Skip to content

Commit e25477d

Browse files
author
Tom Barnes
authored
fix nightly regression in IT FMW (#3734)
* fix nightly regression in IT FMW
1 parent 107850a commit e25477d

File tree

1 file changed

+2
-2
lines changed
  • kubernetes/samples/scripts/create-fmw-infrastructure-domain/domain-home-in-image

1 file changed

+2
-2
lines changed

kubernetes/samples/scripts/create-fmw-infrastructure-domain/domain-home-in-image/create-domain.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ initOutputDir() {
113113

114114
# try to execute image builder to see whether it is available
115115
validateImageBuilderAvailable() {
116-
if ! [ -x "$(command -v ${WLSIMG_BUILDER})" ]; then
117-
validationError "${WLSIMG_BUILDER} is not installed"
116+
if ! [ -x "$(command -v ${WLSIMG_BUILDER:-docker})" ]; then
117+
validationError "${WLSIMG_BUILDER:-docker} is not installed"
118118
fi
119119
}
120120

0 commit comments

Comments
 (0)