diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2f1ba923..244dac31 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -68,7 +68,7 @@ Once you have a GitHub login: 5. Configure the project and check that it builds (if not, please report a bug): - $ rm -r build + $ rm -rf build $ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release $ cmake --build build --parallel diff --git a/README.md b/README.md index 2f08c527..71a64f33 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,6 @@ You need [CMake](https://cmake.org/download/) to configure the Exiv2 project, an ```bash $ cd ~/gnu/github/exiv2 # Location of the project code -$ rm -r build # Remove existing build directory $ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release # Configure the project with CMake $ cmake --build build # Compile the project $ ctest --test-dir build --verbose # Run tests