summaryrefslogtreecommitdiff
path: root/taler-build/update_merchant_frontends.sh
blob: 32a912256a41d6f6c1acc816530506fbd104b49c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

base=${TALER_DEPLOYMENT_BASE:-$HOME}

export PATH="$base/deployment":$PATH

cd $base/merchant-frontends/ && \
  git pull && \
  git submodule update --init && \
  git clean -fxd && \
  ./bootstrap && \
  ./configure --prefix="$base/local" && \
  make && \
  make install && \
  cd $base/deployment && \
  arm.sh -k taler-blog && \
  arm.sh -k taler-donations
arm.sh -i taler-blog
arm.sh -i taler-donations