summaryrefslogtreecommitdiff
path: root/bin/taler-deployment-build
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-11-21 17:29:51 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-11-21 17:29:51 +0100
commit7bdf6fc3fb7ab7906116f0e0cc89928c4525dd93 (patch)
treedfacb558a7b3d2f693735e17a305972f484e3e7c /bin/taler-deployment-build
parent275a80252b5a17b189604ae80614e52f380a8075 (diff)
downloaddeployment-7bdf6fc3fb7ab7906116f0e0cc89928c4525dd93.tar.gz
deployment-7bdf6fc3fb7ab7906116f0e0cc89928c4525dd93.tar.bz2
deployment-7bdf6fc3fb7ab7906116f0e0cc89928c4525dd93.zip
remove obsolete script
Diffstat (limited to 'bin/taler-deployment-build')
-rwxr-xr-xbin/taler-deployment-build28
1 files changed, 0 insertions, 28 deletions
diff --git a/bin/taler-deployment-build b/bin/taler-deployment-build
deleted file mode 100755
index ef22492..0000000
--- a/bin/taler-deployment-build
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-# Invocation
-# $ taler-deployment-build [--coverage]
-
-set -eu
-
-if ! test $HOME/activate; then
- echo "$HOME/activate not found. Although the compilation
- is not affected, testcases will fail because the database
- cannot be launched"
- exit
-fi
-
-source $HOME/activate
-
-cd $HOME/stamps
-./invalidate.sh
-
-export GNUNET_FORCE_LOG="util;;;;WARNING/taler;;;;DEBUG/twister;;;;DEBUG/test;;;;DEBUG"
-
-if test ${1:-notgiven} = "--coverage"; then
- make lcov
-else
- # NOTE: when deployment.git changes, the 'make' command
- # below will start on the OLD Makefile anyway!
- make
-fi