avoid using "C:" in tar arguments. "C:" is part of DEMOS_TEST_DIR

This commit is contained in:
Jane Tournois 2023-06-01 08:31:58 +02:00
parent 10404c1054
commit c15199f3e5
1 changed files with 3 additions and 2 deletions

View File

@ -229,8 +229,9 @@ collect_demos_binaries()
popd
done
${TAR} cf "${DEMOS_TEST_DIR}/demos_${CGAL_TESTER}_${PLATFORM}.tar" *_Demo_with_dlls/*;
${COMPRESSOR} -9f "${DEMOS_TEST_DIR}/demos_${CGAL_TESTER}_${PLATFORM}.tar"
${TAR} cf "demos_${CGAL_TESTER}_${PLATFORM}.tar" *_Demo_with_dlls/*;
${COMPRESSOR} -9f "demos_${CGAL_TESTER}_${PLATFORM}.tar"
mv "demos_${CGAL_TESTER}_${PLATFORM}.tar.gz" ${CGAL_TEST_DIR}
else
echo "Don't collect demos binaries for platform $PLATFORM";
fi