summaryrefslogtreecommitdiff
path: root/taler-build/update_merchant_frontends.sh
blob: 3e206c9d9584ada7a2aeb955290127f0a1c72272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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