mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 20:24:35 +03:00
10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ROOT_DIR=`pwd`
|
|
dir="01-basic/I-compiling-with-clang"
|
|
|
|
if [ -d "$ROOT_DIR/$dir/build.clang" ]; then
|
|
echo "deleting $dir/build.clang"
|
|
rm -r $dir/build.clang
|
|
fi
|