Skip to content

Commit

Permalink
Create tar.gz with file mode (+x) for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
utapyngo committed May 23, 2013
1 parent a5dab42 commit 6991bf1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/main/assembly/dist.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<assembly>
<id>bin</id>
<baseDirectory>owl2vcs</baseDirectory>
<formats>
<format>zip</format>
<format>tar.gz</format>
</formats>
<fileSets>
<fileSet>
Expand All @@ -16,12 +18,29 @@
<include>owl2vcs.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>scripts</directory>
<outputDirectory></outputDirectory>
<includes>
<include>javamem</include>
<include>owl2diff</include>
<include>owl2enable</include>
<include>*.sh</include>
</includes>
<fileMode>0755</fileMode>
</fileSet>
<fileSet>
<directory>scripts</directory>
<outputDirectory></outputDirectory>
<includes>
<include>*</include>
</includes>
<excludes>
<exclude>javamem</exclude>
<exclude>owl2diff</exclude>
<exclude>owl2enable</exclude>
<exclude>*.sh</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>

0 comments on commit 6991bf1

Please sign in to comment.