13 lines
240 B
Bash
13 lines
240 B
Bash
#!/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`
|
|
export LD_PRELOAD=${LD_PRELOAD:-}:%libdir%/libtalerutil.so
|
|
exec gnunet-config "$@"
|