File tree 2 files changed +3
-3
lines changed
src/com/jverrecchia/initializr/builder
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
package com .jverrecchia .initializr .builder ;
2
2
3
3
public class Const {
4
- final public static String version = "3 .0" ;
4
+ final public static String version = "4 .0" ;
5
5
}
6
6
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ private void generateZip(List<ZipFile> zipfiles){
49
49
50
50
51
51
for (ZipFile currentZipFile : zipfiles ){
52
- ZipEntry entry = new ZipEntry (currentZipFile .getZipPath ());
52
+ ZipEntry entry = new ZipEntry ("initializr/" + currentZipFile .getZipPath ());
53
53
zipOut .putNextEntry (entry );
54
54
55
55
byte [] theByteArray = null ;
@@ -62,7 +62,7 @@ private void generateZip(List<ZipFile> zipfiles){
62
62
zipOut .write (theByteArray );
63
63
}
64
64
65
- zipOut .putNextEntry (new ZipEntry ("img/" ));
65
+ zipOut .putNextEntry (new ZipEntry ("initializr/ img/" ));
66
66
zipOut .finish ();
67
67
byteData = bos .toByteArray ();
68
68
You can’t perform that action at this time.
0 commit comments