Skip to content

Commit

Permalink
Merge branch 'fix-domainlib-capture' into 'release/4.2'
Browse files Browse the repository at this point in the history
Fix domain library capture logic

See merge request weblogic-cloud/weblogic-kubernetes-operator!4873
  • Loading branch information
rjeberhard committed Nov 20, 2024
2 parents 9bc7e4c + f2194e5 commit 59d149b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operator/src/main/resources/scripts/modelInImage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1102,7 +1102,7 @@ wdtUpdateModelDomain() {
captureBinLibAdded() {
local BINLIBDIR_NAME="/tmp/binlibdir.txt"
find $DOMAIN_HOME/bin -maxdepth 1 -type f | sed "s|$DOMAIN_HOME/bin|wlsdeploy/domainBin|g" > $BINLIBDIR_NAME
find $DOMAIN_HOME/lib -maxdepth 1 -type f | sed "s|$DOMAIN_HOME/bin|wlsdeploy/domainLibraries|g" >> $BINLIBDIR_NAME
find $DOMAIN_HOME/lib -maxdepth 1 -type f | sed "s|$DOMAIN_HOME/lib|wlsdeploy/domainLibraries|g" >> $BINLIBDIR_NAME
}

wdtHandleOnlineUpdate() {
Expand Down

0 comments on commit 59d149b

Please sign in to comment.