]
Marek Kopecký moved JBEAP-1182 to WFCORE-1021:
----------------------------------------------
Project: WildFly Core (was: JBoss Enterprise Application Platform)
Key: WFCORE-1021 (was: JBEAP-1182)
Workflow: GIT Pull Request workflow (was: CDW v1)
Component/s: Server
(was: Build System)
Target Release: (was: 7.0.0.GA)
Affects Version/s: 2.0.0.CR5
(was: 7.0.0.DR11 (Alpha))
Xml files from wildfly-core don't end with "new line
character"
---------------------------------------------------------------
Key: WFCORE-1021
URL:
https://issues.jboss.org/browse/WFCORE-1021
Project: WildFly Core
Issue Type: Bug
Components: Server
Affects Versions: 2.0.0.CR5
Reporter: Marek Kopecký
Assignee: Paul Gier
*Description of problem:*
* Some of xml files from *wildfly-core* don't end with "new line
character".
* Each xml file should end with "new line character", because of posix
standard:
**
http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#t...
* List of affected files:
** ./modules/system/layers/base/org/wildfly/security/elytron/main/module.xml
** ./domain/configuration/host.xml
** ./domain/configuration/domain.xml
** ./domain/configuration/host-slave.xml
** ./domain/configuration/host-master.xml
** ./standalone/configuration/standalone.xml
*How reproducible:*
Always
*Steps to Reproduce:*
# cd EAP_HOME
# {noformat}
for xml in `find -type f | grep xml$`; do
if [ "`cat -E $xml | tail -n 1 |grep -o '.$'`" != "$" ] ;
then
echo $xml
fi
done
{noformat}