Skip to content

Commit 94b7608

Browse files
authored
Merge pull request #764 from oracle/fix_image_substitution
Fix a regression in domain home in image sample
2 parents 56257cc + 7ae1481 commit 94b7608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kubernetes/samples/scripts/common/utility.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ function createFiles {
410410
if [ -z $image ]; then
411411
sed -i -e "s|%WEBLOGIC_IMAGE%|${imageName}|g" ${dcrOutput}
412412
else
413-
sed -i -e "s:%WEBLOGIC_IMAGE%:${image}:g" ${dcrOutput}
413+
sed -i -e "s|%WEBLOGIC_IMAGE%|${image}|g" ${dcrOutput}
414414
fi
415415
else
416416
sed -i -e "s:%WEBLOGIC_IMAGE%:${image}:g" ${dcrOutput}

0 commit comments

Comments
 (0)