-
Notifications
You must be signed in to change notification settings - Fork 314
Closed
Labels
Milestone
Description
Hey,
I have the following in my pom.xml
...
<data>
<src>${project.basedir}/src/deb/default/</src>
<type>directory</type>
<excludes>.DS_Store</excludes>
<mapper>
<type>perm</type>
<prefix>/etc/default</prefix>
<user>root</user>
<group>root</group>
</mapper>
</data>
...
There is only one file inside which is in unix encoding. However, when the packaging is done under windows, this file suddenly gets converted to windows line.separators
, which then makes it uninstallable under debian linux, as the it cannot be sourced anymore and bash returns and error code which in turn stops the installation. Also this does not seem to happen with every windows installation (works on two other machines).
I have only taken a quick peek at the source, but I thought the specified files are simply copied and not changed in any way (or is this possible with the template functionality)? Anything else which could cause this behaviour?
Any hints are greatly appreciated.