diff options
| author | Christian Grothoff <christian@grothoff.org> | 2023-01-06 22:22:14 +0100 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2023-01-06 22:22:21 +0100 | 
| commit | 6cb8b68bd08ddb5edff396e293b6776e0e989ded (patch) | |
| tree | 5dc061496ab7fcd4b0046c0e26ffdf2a6ed95505 /contrib | |
| parent | 28c3ae47de7428b4f7019db9158390f8d14ca93d (diff) | |
support md in TOS
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/Makefile.am | 2 | ||||
| -rwxr-xr-x | contrib/update-pp.sh | 4 | ||||
| -rwxr-xr-x | contrib/update-tos.sh | 4 | 
3 files changed, 10 insertions, 0 deletions
| diff --git a/contrib/Makefile.am b/contrib/Makefile.am index cc1cf4d7..99927e7e 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -26,6 +26,7 @@ rdatadir=$(datadir)/taler/exchange  tosen_DATA = \    tos/en/*.txt \ +  tos/en/*.md \    tos/en/*.pdf \    tos/en/*.epub \    tos/en/*.xml \ @@ -33,6 +34,7 @@ tosen_DATA = \  ppen_DATA = \    pp/en/*.txt \ +  pp/en/*.md \    pp/en/*.pdf \    pp/en/*.epub \    pp/en/*.xml \ diff --git a/contrib/update-pp.sh b/contrib/update-pp.sh index 948f6af3..728216c5 100755 --- a/contrib/update-pp.sh +++ b/contrib/update-pp.sh @@ -29,6 +29,10 @@ do          else              mv _build/$f/${VERSION}.$f $l/${VERSION}.$f          fi +        if test $f = "txt" +        then +            cp $l/${VERSION}.$f $l/${VERSION}.md +        fi      done  done  cd .. diff --git a/contrib/update-tos.sh b/contrib/update-tos.sh index 67db7c03..dcf9e391 100755 --- a/contrib/update-tos.sh +++ b/contrib/update-tos.sh @@ -29,6 +29,10 @@ do          else              mv _build/$f/${VERSION}.$f $l/${VERSION}.$f          fi +        if test $f = "txt" +        then +            cp $l/${VERSION}.$f $l/${VERSION}.md +        fi      done  done  cd .. | 
