Skip to content

Commit 75daaed

Browse files
committed
Remove intermediary Conan files
1 parent 797ebc2 commit 75daaed

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

utils/clean-conan-files.sh

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
echo "Cleaning Conan intermediary files"
3+
4+
5+
files=(
6+
"conanbuildenv-release-x86_64.sh" \
7+
"conanbuild.sh" \
8+
"conanrunenv-release-x86_64.sh" \
9+
"conanrun.sh" \
10+
"deactivate_conanbuildenv-release-x86_64.sh" \
11+
"deactivate_conanbuild.sh" \
12+
"deactivate_conanrun.sh" \
13+
"graph.json" \
14+
"list.json" \
15+
)
16+
17+
for file in "${files[@]}"; do
18+
echo "- Removing ${file}"
19+
rm -f "$file"
20+
done
21+
22+
23+
echo "- Removing conan-center-index (folder)"
24+
rm -rf conan-center-index
File renamed without changes.

0 commit comments

Comments
 (0)