We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107850a commit e25477dCopy full SHA for e25477d
kubernetes/samples/scripts/create-fmw-infrastructure-domain/domain-home-in-image/create-domain.sh
@@ -113,8 +113,8 @@ initOutputDir() {
113
114
# try to execute image builder to see whether it is available
115
validateImageBuilderAvailable() {
116
- if ! [ -x "$(command -v ${WLSIMG_BUILDER})" ]; then
117
- validationError "${WLSIMG_BUILDER} is not installed"
+ if ! [ -x "$(command -v ${WLSIMG_BUILDER:-docker})" ]; then
+ validationError "${WLSIMG_BUILDER:-docker} is not installed"
118
fi
119
}
120
0 commit comments