]
Hayk Hovsepyan updated JBTM-2533:
---------------------------------
Status: Pull Request Sent (was: Coding In Progress)
Git Pull Request:
Possibility to run "scripts/hudson/narayana.sh" on
different platforms.
-----------------------------------------------------------------------
Key: JBTM-2533
URL:
https://issues.jboss.org/browse/JBTM-2533
Project: JBoss Transaction Manager
Issue Type: Feature Request
Components: Testing
Affects Versions: 5.2.5.Final
Reporter: Hayk Hovsepyan
Assignee: Hayk Hovsepyan
Priority: Blocker
Fix For: 5.next
Currently "scripts/hudson/narayana.sh" uses "sed" command with
"-i" option, so it looks like:
"sed -i file -e expression".
"-i" option is not supported on some platforms (HP-UX).
We need to apply workaround here and modify "sed" commands to be in this
format:
"sed -e expression file > file.tmp && mv file.tmp file"