Skip to content
Snippets Groups Projects
doc.sh 620 B
Newer Older
Guilhem Saurel's avatar
Guilhem Saurel committed
# Removes useless folders, and set permissions
Guilhem Saurel's avatar
Guilhem Saurel committed
cd /net/pongo/vol/vol_projects/partage_gepetto/Doc
    [[ -d $namespace ]] || continue
    pushd $namespace
    for project in *; do
        pushd $project
        for branch in *; do
            pushd $branch
            for folder in html doxygen-html; do
                [[ -d $folder ]] || continue
                cp -r $folder/* .
                rm -r $folder
            done
Guilhem Saurel's avatar
Guilhem Saurel committed

find . -type d -exec chmod 0775 {} \;
find . -type f -exec chmod 0664 {} \;