Skip to content
Snippets Groups Projects
Commit 4bb3d4b0 authored by Bob Mottram's avatar Bob Mottram
Browse files

Remove dubious pelican theme css at install time

parent 85126cec
No related branches found
No related tags found
No related merge requests found
......@@ -741,6 +741,14 @@ function pelican_themes {
git clone https://github.com/samael500/w3-personal-blog
git clone https://github.com/jarv/water-iris
git clone https://github.com/kplaube/yapeme
# remove any dubious css
for d in */ ; do
THEME_NAME=$(echo "$d" | awk -F '/' '{print $1}')
if [ -d $d/static/css/style.css ]; then
sed -i '/googleapi/d' $d/static/css/style.css
fi
done
}
function mesh_install_pelican {
......
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