File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/io/github/fvarrui/javapackager/gradle Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,6 @@ public File apply(Packager packager) throws Exception {
3131 return null ;
3232 }
3333
34- Logger .warn ("Sorry! " + getArtifactName () + " generation is not yet available" );
35-
3634 File assetsFolder = linuxPackager .getAssetsFolder ();
3735 String name = linuxPackager .getName ();
3836 String description = linuxPackager .getDescription ();
@@ -102,6 +100,9 @@ public File apply(Packager packager) throws Exception {
102100
103101 // symbolic link in /usr/local/bin to app binary
104102 debTask .link ("/usr/local/bin/" + name , "/opt/" + name + "/" + name , 0777 );
103+
104+ // runs deb task
105+ debTask .getActions ().forEach (action -> action .execute (debTask ));
105106
106107 return debFile ;
107108
You can’t perform that action at this time.
0 commit comments