Skip to content
Snippets Groups Projects
Commit f0a2bcd6 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Backport of fix-70

parent b5a31fa6
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ else ...@@ -15,6 +15,7 @@ else
all: all:
./extract ./extract
doxygen doxygen
./postproc.sh
cp Octocat.png html/ cp Octocat.png html/
./report_errors ./report_errors
......
for file in html/*.html
do
awk -v version=$(plumed info --version) '{
if(match($0,"<span>Main&#160;Page</span>")){
sub("Main","Home",$0);
sub("Page","(v"version")",$0);
print
} else print
}' $file > $file.tmp
mv $file.tmp $file
done
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