diff options
author | Johnny Jazeix <jazeix@gmail.com> | 2019-11-13 21:24:41 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2019-11-13 23:02:18 (GMT) |
commit | 2d0100fac7a51327ce8053b4ab2277aaa96c12a5 (patch) | |
tree | 4e18ae98f53620d700a6727cf6a18c77dc2874a6 /Tests/CPackComponentsDEB | |
parent | 5239fc5c753502e91a1ea6859842d7fc24a36253 (diff) | |
download | CMake-2d0100fac7a51327ce8053b4ab2277aaa96c12a5.zip CMake-2d0100fac7a51327ce8053b4ab2277aaa96c12a5.tar.gz CMake-2d0100fac7a51327ce8053b4ab2277aaa96c12a5.tar.bz2 |
replace remove and remove_directory with rm in tests
Diffstat (limited to 'Tests/CPackComponentsDEB')
-rw-r--r-- | Tests/CPackComponentsDEB/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CPackComponentsDEB/CMakeLists.txt b/Tests/CPackComponentsDEB/CMakeLists.txt index bc5b6a9..4363f1b 100644 --- a/Tests/CPackComponentsDEB/CMakeLists.txt +++ b/Tests/CPackComponentsDEB/CMakeLists.txt @@ -104,7 +104,7 @@ install(FILES ${CPackComponentsDEB_BINARY_DIR}/symtest COMPONENT applications) if(EXISTS "./dirtest") - execute_process(COMMAND ${CMAKE_COMMAND} -E remove_directory ./dirtest) + execute_process(COMMAND ${CMAKE_COMMAND} -E rm -rf ./dirtest) endif() # NOTE: directory left empty on purpose execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory ./dirtest) |