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 5e3c761 commit 5141726Copy full SHA for 5141726
operator/src/main/resources/scripts/modelInImage.sh
@@ -1349,7 +1349,8 @@ restoreAppAndLibs() {
1349
# zip, the original xml in the archive may have wdt tokenized notations.
1350
cd ${DOMAIN_HOME} || return 1
1351
unzip -o ${IMG_ARCHIVES_ROOTDIR}/${file} -x "wlsdeploy/domainBin/*" "wlsdeploy/domainLibraries/*" "config/*"
1352
- if [ $? -ne 0 ] && [ $ret -ne 11 ] ; then
+ ret=$?
1353
+ if [ $ret -ne 0 ] && [ $ret -ne 11 ] ; then
1354
trace SEVERE "Domain Source Type is FromModel, error in extracting application archive ${IMG_ARCHIVES_ROOTDIR}/${file}"
1355
return 1
1356
fi
0 commit comments