We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6e2863 commit 70e87d9Copy full SHA for 70e87d9
1 file changed
run.sh
@@ -152,8 +152,10 @@ tar -czf test.${TIME}.tar.gz "${jtWork}" "${jtReport}" || echo "Packing of resul
152
popd
153
154
if [ ! `readlink $READLINK_F ${SCRIPT_DIR}` == `pwd` ] ; then
155
- mv ${SCRIPT_DIR}/test.${TIME} .
156
- mv -v ${SCRIPT_DIR}/test.${TIME}.tar.gz . || echo "Moving of results tarball failed"
+ cp -r ${SCRIPT_DIR}/test.${TIME} .
+ rm -rf ${SCRIPT_DIR}/test.${TIME} || echo "Removal of results folder failed, thats usually ok"
157
+ cp -r ${SCRIPT_DIR}/test.${TIME}.tar.gz . || echo "Copyingof results tarball failed, thats usually ok"
158
+ rm -rf ${SCRIPT_DIR}/test.${TIME}.tar.gz || echo "Removal of results tarball failed, thats usually ok"
159
fi
160
161
if ! [ -f test.${TIME}/tests.log ] ; then
0 commit comments