Skip to content

Commit af60767

Browse files
committed
U fixed issue bundling jspawnhelper in zipball/tarball with execution permissions
1 parent fe92c92 commit af60767

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/main/resources/linux/assembly.xml.vtl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<exclude>${info.executable.name}</exclude>
1414
#if ($info.bundleJre)
1515
<exclude>${info.jreDirectoryName}/bin/*</exclude>
16+
<exclude>${info.jreDirectoryName}/lib/jspawnhelper</exclude>
1617
#end
1718
</excludes>
1819
</fileSet>
@@ -23,6 +24,7 @@
2324
<include>${info.executable.name}</include>
2425
#if ($info.bundleJre)
2526
<include>${info.jreDirectoryName}/bin/*</include>
27+
<include>${info.jreDirectoryName}/lib/jspawnhelper</include>
2628
#end
2729
</includes>
2830
<fileMode>0755</fileMode>

src/main/resources/mac/assembly.xml.vtl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<exclude>Contents/MacOS/universalJavaApplicationStub</exclude>
1515
#if ($info.bundleJre)
1616
<exclude>Contents/PlugIns/${info.jreDirectoryName}/Contents/Home/bin/*</exclude>
17+
<exclude>Contents/PlugIns/${info.jreDirectoryName}/Contents/Home/lib/jspawnhelper</exclude>
1718
#end
1819
</excludes>
1920
</fileSet>
@@ -25,6 +26,7 @@
2526
<include>Contents/MacOS/universalJavaApplicationStub</include>
2627
#if ($info.bundleJre)
2728
<include>Contents/PlugIns/${info.jreDirectoryName}/Contents/Home/bin/*</include>
29+
<include>Contents/PlugIns/${info.jreDirectoryName}/Contents/Home/lib/jspawnhelper</include>
2830
#end
2931
</includes>
3032
<fileMode>0755</fileMode>

0 commit comments

Comments
 (0)