Skip to content
Snippets Groups Projects
Commit 0cd1ff35 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

doc.sh: also removes html

parent 82d97935
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Removes useless folders
set -e
cd /net/cetus/data/gepetto/Doc
......@@ -10,9 +12,11 @@ for namespace in *; do
pushd $project
for branch in *; do
pushd $branch
[[ -d doxygen-html ]] || continue
cp -r doxygen-html/* .
rm -r doxygen-html
for folder in html doxygen-html; do
[[ -d $folder ]] || continue
cp -r $folder/* .
rm -r $folder
done
popd
done
popd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment