File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator/utils Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1241,10 +1241,13 @@ public static void buildDeployWebServiceAppInPod(
1241
1241
1242
1242
// Create app dir in the admin pod
1243
1243
StringBuffer mkdirCmd = new StringBuffer (" -- bash -c 'mkdir -p " );
1244
- mkdirCmd .append (appLocationInPod );
1244
+ mkdirCmd .append (appLocationInPod + "'" );
1245
+ // Create app dir in the admin pod
1246
+
1245
1247
kubectlexec (adminServerPod , domainNS , mkdirCmd .toString ());
1246
1248
// Create WEB-INF in the app dir
1247
- mkdirCmd .append ("/WEB-INF'" );
1249
+ mkdirCmd = new StringBuffer (" -- bash -c 'mkdir -p " );
1250
+ mkdirCmd .append (appLocationInPod + "/WEB-INF'" );
1248
1251
kubectlexec (adminServerPod , domainNS , mkdirCmd .toString ());
1249
1252
1250
1253
// Copy shell script to the admin pod
You can’t perform that action at this time.
0 commit comments