File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
src/main/java/io/github/fvarrui/javapackager/packagers Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 6
6
7
7
import org .apache .commons .lang3 .StringUtils ;
8
8
9
- import io .github .fvarrui .javapackager .utils .FileUtils ;
10
9
import io .github .fvarrui .javapackager .utils .Logger ;
11
10
import io .github .fvarrui .javapackager .utils .VelocityUtils ;
12
11
@@ -55,13 +54,8 @@ protected void doCreateAppStructure() throws Exception {
55
54
@ Override
56
55
public File doCreateApp () throws Exception {
57
56
58
- Logger .infoIndent ("Creating windows EXE ..." );
57
+ Logger .infoIndent ("Creating windows EXE ... with " + getWinConfig (). getExeCreationTool () );
59
58
60
- // copies JAR to app folder
61
- if (!winConfig .isWrapJar ()) {
62
- FileUtils .copyFileToFolder (jarFile , appFolder );
63
- }
64
-
65
59
// generates manifest file to require administrator privileges from velocity template
66
60
manifestFile = new File (assetsFolder , name + ".exe.manifest" );
67
61
VelocityUtils .render ("windows/exe.manifest.vtl" , manifestFile , this );
You can’t perform that action at this time.
0 commit comments