Skip to content

Commit bd6abe3

Browse files
committed
Use a unique directory for WDT download
1 parent ef88c6f commit bd6abe3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItSystemResOverrides.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,8 +692,9 @@ private static void downloadAndInstallWDT() throws IOException {
692692

693693
String wdtUrl = getActualLocationIfNeeded(WDT_DOWNLOAD_URL, WDT);
694694

695-
Path destLocation = Path.of(DOWNLOAD_DIR, "wdt", "weblogic-deploy.zip");
696-
encryptModelScript = Path.of(DOWNLOAD_DIR, "wdt", "weblogic-deploy", "bin", "encryptModel.sh");
695+
Path destLocation = Path.of(DOWNLOAD_DIR, "sysresoverride", "wdt", "weblogic-deploy.zip");
696+
encryptModelScript = Path.of(DOWNLOAD_DIR, "sysresoverride",
697+
"wdt", "weblogic-deploy", "bin", "encryptModel.sh");
697698
if (!Files.exists(destLocation) && !Files.exists(encryptModelScript)) {
698699
logger.info("Downloading WDT from {0} to {1}", wdtUrl, destLocation);
699700
Files.createDirectories(destLocation.getParent());

0 commit comments

Comments
 (0)