exchange/src/util/taler-config.in

13 lines
240 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -eu
if ! type gnunet-config >/dev/null; then
echo "$0 needs gnunet-config to be installed"
exit 1
fi
GC=`which gnunet-config`
2020-03-28 22:12:47 +01:00
export LD_PRELOAD=${LD_PRELOAD:-}:%libdir%/libtalerutil.so
exec gnunet-config "$@"