diff options
author | Koen Kooi <koen@openembedded.org> | 2008-03-19 08:35:14 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-03-19 08:35:14 +0000 |
commit | ae97a3d69c7426e1054c089fbc4c7c2f47b9e8a3 (patch) | |
tree | ee020f1c93ebb0bb7c6acb41143a7fe4081751a5 | |
parent | 9cd9fc862f53b025acd0fea8b695cadd9c8196e4 (diff) |
testlab: remove bashism, spotted by XorA
-rw-r--r-- | classes/testlab.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/testlab.bbclass b/classes/testlab.bbclass index 563a5bff28..ba0bc794e7 100644 --- a/classes/testlab.bbclass +++ b/classes/testlab.bbclass @@ -26,7 +26,7 @@ if [ -e ${IMAGE_ROOTFS}/etc/opkg ] ; then TESTLAB_DIR="${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}-testlab" mkdir -p ${TESTLAB_DIR}/ - ls -laR ${IMAGE_ROOTFS} >& ${TESTLAB_DIR}/files-in-image.txt + ls -laR ${IMAGE_ROOTFS} > ${TESTLAB_DIR}/files-in-image.txt echo > ${TESTLAB_DIR}/installed-packages.txt echo -e "digraph depends {\n node [shape=plaintext]" > ${TESTLAB_DIR}/depends.dot |