test: fix to eliminate error message "tr: warning: an unescaped backslash at end of string is not portable"
This commit is contained in:
parent
73f7415c12
commit
328fd1f003
@ -72,7 +72,7 @@ copyTestFiles()
|
||||
# result analysis
|
||||
reportTest()
|
||||
{
|
||||
cat $results | tr \\ / > ${results}-new
|
||||
cat $results | tr '\\' '/' > ${results}-new
|
||||
mv -f ${results}-new $results
|
||||
if [ ! -z `which dos2unix` ]; then
|
||||
unix2dos $results >/dev/null 2>&1
|
||||
|
||||
Loading…
Reference in New Issue
Block a user