@@ -349,9 +349,9 @@ function createFiles {
349
349
defaultImageName=" ` basename ${domainHomeImageBuildPath} | sed ' s/^[0-9]*-//' ` "
350
350
baseTag=${domainHomeImageBase#*: }
351
351
defaultImageName=${defaultImageName} :${baseTag:- " latest" }
352
- sed -i -e " s: %IMAGE_NAME%: ${defaultImageName} : g" ${domainPropertiesOutput}
352
+ sed -i -e " s| %IMAGE_NAME%| ${defaultImageName} | g" ${domainPropertiesOutput}
353
353
else
354
- sed -i -e " s: %IMAGE_NAME%: ${image} : g" ${domainPropertiesOutput}
354
+ sed -i -e " s| %IMAGE_NAME%| ${image} | g" ${domainPropertiesOutput}
355
355
fi
356
356
else
357
357
@@ -406,7 +406,7 @@ function createFiles {
406
406
# extra entries for FMW Infra domains
407
407
sed -i -e " s:%RCU_CREDENTIALS_SECRET_NAME%:${rcuCredentialsSecret} :g" ${createJobOutput}
408
408
sed -i -e " s:%CUSTOM_RCUPREFIX%:${rcuSchemaPrefix} :g" ${createJobOutput}
409
- sed -i -e " s: %CUSTOM_CONNECTION_STRING%: ${rcuDatabaseURL} : g" ${createJobOutput}
409
+ sed -i -e " s| %CUSTOM_CONNECTION_STRING%| ${rcuDatabaseURL} | g" ${createJobOutput}
410
410
sed -i -e " s:%EXPOSE_T3_CHANNEL_PREFIX%:${exposeAdminT3Channel} :g" ${createJobOutput}
411
411
# entries for Istio
412
412
sed -i -e " s:%ISTIO_PREFIX%:${istioPrefix} :g" ${createJobOutput}
@@ -482,9 +482,9 @@ function createFiles {
482
482
483
483
# now we know which image to use, update the domain yaml file
484
484
if [ -z $image ]; then
485
- sed -i -e " s: %WEBLOGIC_IMAGE%: ${defaultImageName} : g" ${dcrOutput}
485
+ sed -i -e " s| %WEBLOGIC_IMAGE%| ${defaultImageName} | g" ${dcrOutput}
486
486
else
487
- sed -i -e " s: %WEBLOGIC_IMAGE%: ${image} : g" ${dcrOutput}
487
+ sed -i -e " s| %WEBLOGIC_IMAGE%| ${image} | g" ${dcrOutput}
488
488
fi
489
489
else
490
490
sed -i -e " s:%WEBLOGIC_IMAGE%:${image} :g" ${dcrOutput}
@@ -551,5 +551,4 @@ function createDomain {
551
551
552
552
# Print a summary
553
553
printSummary
554
- }
555
-
554
+ }
0 commit comments