From 3302f9ac7a88e519645f40f15cb47453a2232655 Mon Sep 17 00:00:00 2001 From: Brian Gerkey Date: Mon, 2 Jan 2012 19:54:41 -0800 Subject: [PATCH] Remove accidental prefix before plain old bash command. Will need a different solution on Windows. --- cmake/tests.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/tests.cmake b/cmake/tests.cmake index a87795dae..be982caf3 100644 --- a/cmake/tests.cmake +++ b/cmake/tests.cmake @@ -35,7 +35,7 @@ macro(initialize_tests) # handle lingers in the test results directory), because CMake doesn't # seem to be able to do it. add_custom_target(clean-test-results - COMMAND ${env_sh_path} ${PYTHON_EXECUTABLE} if ! rm -rf ${rosbuild_test_results_dir}\; then echo "WARNING: failed to remove test-results directory"\; fi) + COMMAND if ! rm -rf ${rosbuild_test_results_dir}\; then echo "WARNING: failed to remove test-results directory"\; fi) # Make the tests target depend on clean-test-results, which will ensure # that test results are deleted before we try to build tests, and thus # before we try to run tests.