Commit 7a175054 authored by Arnaud Legrand's avatar Arnaud Legrand

Trying to fix CI. This worked on my machine :(

parent 54e025a7
...@@ -7,8 +7,9 @@ pages: ...@@ -7,8 +7,9 @@ pages:
# - pandoc --list-input-formats # Broken as pandoc dates from 2013 on this image! :( # - pandoc --list-input-formats # Broken as pandoc dates from 2013 on this image! :(
- for file in $(find -name "*.md") $(find -name "*.org"); do - for file in $(find -name "*.md") $(find -name "*.org"); do
bin/pandoc_fixer.pl ${file}; bin/pandoc_fixer.pl ${file};
mkdir -p public/`dirname ${file}` echo "Creating" public/`dirname ${file}`;
mv ${file%.*}.html public/`dirname ${file}`; mkdir -p public/`dirname ${file}`;
mv ${file%.*}.html public/`dirname ${file}`/;
done done
- shopt -s extglob - shopt -s extglob
# - mv !(public) public # - mv !(public) public
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment