Fixed error in move command in test script

This commit is contained in:
murgatroid99 2017-09-19 14:27:46 -07:00
parent a1c7920a00
commit 2cccacb6a9

View File

@ -61,7 +61,7 @@ do
JUNIT_REPORT_PATH="reports/node$version/" JUNIT_REPORT_STACK=1 ./node_modules/.bin/gulp native.test || FAILED="true"
cd "reports/node$version"
for file in * ; do
mv $f `echo $f | sed 's/\(.*\)\.xml/\1_sponge_log.xml/'`
mv $file $(echo $file | sed 's/\(.*\)\.xml/\1_sponge_log.xml/')
done
done