Merge pull request #5459 from eclipse/jetty-10.0.x-fix-jetty-home-assembly-modes
Fix archive assemblies (tar.gz and zip) to have fixed file/dir modes.
This commit is contained in:
commit
6bff0d2d3d
|
@ -14,7 +14,19 @@
|
|||
<excludes>
|
||||
<exclude>**/META-INF/**</exclude>
|
||||
<exclude>*-config.jar</exclude>
|
||||
<!-- we'll build up shell scripts with execute in separate file-set -->
|
||||
<exclude>bin/*.sh</exclude>
|
||||
</excludes>
|
||||
<fileMode>0400</fileMode>
|
||||
<directoryMode>0700</directoryMode>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>${assembly-directory}</directory>
|
||||
<outputDirectory></outputDirectory>
|
||||
<includes>
|
||||
<include>bin/*.sh</include>
|
||||
</includes>
|
||||
<fileMode>0500</fileMode>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
||||
|
|
Loading…
Reference in New Issue