taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 93ab0c6e0829e3b6f99b596b6d1e5dbb9f8b3939
parent bcd09e9a0036c004c1a1c0dbd58c67e716cea786
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sun, 24 Apr 2016 21:58:44 +0200

make scripts relative

Diffstat:
Mtaler-build/Makefile | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/taler-build/Makefile b/taler-build/Makefile @@ -1,29 +1,29 @@ all: exchange-stamp bank-stamp merchant-stamp gnunet-stamp merchant-frontends-stamp exchange-stamp: gnunet-stamp - ~/deployment/taler-build/update_exchange.sh + ./update_exchange.sh touch $@ gnunet-stamp: libmicrohttpd-stamp libgnurl-stamp - ~/deployment/taler-build/update_gnunet.sh + ./update_gnunet.sh touch $@ bank-stamp: exchange-stamp - ~/deployment/taler-build/update_bank.sh + ./update_bank.sh touch $@ merchant-stamp: exchange-stamp - ~/deployment/taler-build/update_merchant.sh + ./update_merchant.sh touch $@ libmicrohttpd-stamp: - ~/deployment/taler-build/update_libmicrohttpd.sh + ./update_libmicrohttpd.sh touch $@ libgnurl-stamp: - ~/deployment/taler-build/update_libgnurl.sh + ./update_libgnurl.sh touch $@ merchant-frontends-stamp: - ~/deployment/taler-build/update_merchant_frontends.sh + ./update_merchant_frontends.sh touch $@