diff options
Diffstat (limited to 'mkdeps.sh')
-rwxr-xr-x | mkdeps.sh | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -47,10 +47,12 @@ files | sed 's/^\(.*\)\.adoc$/\1.htmlbody\t\1.snippets\t\1.conf:\t\1.adoc/' files | sed 's/^\(.*\)\.adoc$/\1.html:\t\1.conf\t\1.htmlbody/' printf '\n' -files | sed 's/^\(.*\)\.adoc$/\1.html.gz:\t\1.html/' -files | sed 's/^\(.*\)\.adoc$/\1.snippets.gz:\t\1.snippets/' -listings | sed 's|^\(.*\)/index\.adoc$|\1/categories.xml.gz:\t\1/categories.xml|' -listings | sed 's|^\(.*\)/index\.adoc$|\1/feed.xml.gz:\t\1/feed.xml|' +{ + files | sed 's/^\(.*\)\.adoc$/\1.html/' + files | sed 's/^\(.*\)\.adoc$/\1.snippets/' + listings | sed 's|^\(.*\)/index\.adoc$|\1/categories.xml|' + listings | sed 's|^\(.*\)/index\.adoc$|\1/feed.xml|' +} | sed 's/^\(.*\)$/\1.gz:\t\1/' printf '\n' files | sed 's/^\(.*\)\.adoc$/\1.updatedat-check:\t\1.conf/' @@ -66,6 +68,7 @@ printf '\n' listings | sed 's/^\(.*\)\.adoc$/\1.htmlheader\t\1.htmlfooter:\t\1.conf/' listings | sed 's/^\(.*\)\.adoc$/\1.html:\t\1.htmlheader\t\1.htmlfooter/' listings | sed 's/^\(.*\)\.adoc$/\1.html:\t\1.htmllisting\t\1.htmlbody/' +printf '\n' for colllink in src/collections/*; do c="$(printf '%s' "$colllink" | normalize)" |