Fix: Doc-runner uses wrong file extension.
Updated Doc-runner so that it converts files with the md-extension instead of the txt-extension. refs #4214
This commit is contained in:
parent
3a90825f9e
commit
420f407df4
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
for filepath in `find ../doc -type f -name "*.txt"`; do
|
for filepath in `find ../doc -type f -name "*.md"`; do
|
||||||
markdown $filepath > `dirname $filepath`/`basename $filepath .txt`.html
|
markdown $filepath > `dirname $filepath`/`basename $filepath .md`.html
|
||||||
done
|
done
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in New Issue