You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "You must generate the HTML documentation before running this script."
exit 1
fi
function exists_in_list() {
VALUE=$1
LIST=$2
for x in $LIST; do
if [ "$x" = "$VALUE" ]; then
return 0
fi
done
return 1
}
echo "Choose which branch to analyse (if you don't see your branch, make sure you generated the HTML documentation before running this script and that your branch is listed in conf.py file):"
select branch in $(ls build/html ); do
for f in $(find "build/html/$branch" -name "*.html"); do