commit 032afe823253b3bf2ec1603d7e5aafab470cdc65 Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Thu, 7 Dec 2023 14:10:16 +0100 add from lsd0001 Diffstat:
| A | .buildbot/build.sh | | | 3 | +++ |
| A | .buildbot/firefly-x86_64-amdepyc_deploy.sh | | | 10 | ++++++++++ |
| A | Makefile | | | 8 | ++++++++ |
3 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/.buildbot/build.sh b/.buildbot/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +make diff --git a/.buildbot/firefly-x86_64-amdepyc_deploy.sh b/.buildbot/firefly-x86_64-amdepyc_deploy.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Deploy rest api from buildbot + +if [ -e index.html ]; then + rm index.html +fi +ln -s lsd0001.html index.html +chmod -R ag+rX lsd0001.* index.html . +rsync --exclude=".*" --exclude="Makefile" -a --delete ./ lsd@firefly.gnunet.org:~/public/lsd0001/ diff --git a/Makefile b/Makefile @@ -0,0 +1,8 @@ +all: txt html + +html: + xml2rfc --html --css style.css lsd0001.xml + +txt: + xml2rfc lsd0001.xml +