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 9da1119 commit 8363653Copy full SHA for 8363653
integration-tests/src/test/java/oracle/kubernetes/operator/utils/TestUtils.java
@@ -1241,9 +1241,10 @@ public static void buildDeployWebServiceAppInPod(
1241
1242
// Create app dir in the admin pod
1243
StringBuffer mkdirCmd = new StringBuffer(" -- bash -c 'mkdir -p ");
1244
+ mkdirCmd.append(appLocationInPod);
1245
kubectlexec(adminServerPod, domainNS, mkdirCmd.toString());
1246
// Create WEB-INF in the app dir
- mkdirCmd.append(appLocationInPod).append("/WEB-INF'");
1247
+ mkdirCmd.append("/WEB-INF'");
1248
1249
1250
// Copy shell script to the admin pod
0 commit comments