commit c115a6609adbb99adff4e14019a6d33acbce6ab9
parent baa8833cff8c8c3926638900cc5d5c04052679f8
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Mon, 10 Jun 2019 15:40:11 +0200
Fix docs builder.
Do not fetch new code before the "invalidate" script
has run. The code will then be fetched by the respective
"update_<component>" script.
Diffstat:
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/buildbot/build-docs.sh b/buildbot/build-docs.sh
@@ -2,13 +2,7 @@
set -eu
-cd $HOME/deployment
-
-# like "git pull", but discard local changes
-git fetch
-git reset --hard FETCH_HEAD
-
-cd $HOME/deployment/taler-docbuild
+cd $HOME/deployment/taler-docbuild/
./invalidate.sh
make
diff --git a/taler-docbuild/invalidate.sh b/taler-docbuild/invalidate.sh
@@ -1,6 +1,7 @@
#!/bin/bash
set -eu
+
components="merchant-frontend-examples merchant exchange backoffice api deployment"
for component in $components ; do