summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorMS <ms@taler.net>2021-01-15 10:25:56 +0100
committerMS <ms@taler.net>2021-01-15 10:25:56 +0100
commit577a417a238358489366f113155549bff21478fc (patch)
treef2c456ee6f73dd6d3ef484bf002302ed25e666b9 /cli
parentb5d69ec1ccd4a6e96a3cc112e0531c32b9bda9be (diff)
downloadlibeufin-577a417a238358489366f113155549bff21478fc.tar.gz
libeufin-577a417a238358489366f113155549bff21478fc.tar.bz2
libeufin-577a417a238358489366f113155549bff21478fc.zip
prefer installed cli
Diffstat (limited to 'cli')
-rwxr-xr-xcli/setup-template.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/cli/setup-template.sh b/cli/setup-template.sh
index 13b75ec8..05b42a56 100755
--- a/cli/setup-template.sh
+++ b/cli/setup-template.sh
@@ -54,14 +54,14 @@ curl -s --retry 5 --retry-connrefused $NEXUS_URL > /dev/null
# make ebics host at sandbox
echo Making a ebics host at the sandbox
-./bin/libeufin-cli \
+libeufin-cli \
sandbox --sandbox-url=$SANDBOX_URL \
ebicshost create \
--host-id=$EBICS_HOST_ID
# activate a ebics subscriber on that host
echo Activating the ebics subscriber at the sandbox
-./bin/libeufin-cli \
+libeufin-cli \
sandbox --sandbox-url=$SANDBOX_URL \
ebicssubscriber create \
--host-id=$EBICS_HOST_ID \
@@ -70,7 +70,7 @@ echo Activating the ebics subscriber at the sandbox
# give a bank account to such user
echo Giving a bank account to such subscriber
-./bin/libeufin-cli \
+libeufin-cli \
sandbox --sandbox-url=$SANDBOX_URL \
ebicsbankaccount create \
--iban=$IBAN \
@@ -93,7 +93,7 @@ libeufin-nexus \
# create a bank connection
echo Creating a bank connection for such user
-./bin/libeufin-cli \
+libeufin-cli \
connections \
new-ebics-connection \
--ebics-url $EBICS_BASE_URL \
@@ -104,17 +104,17 @@ echo Creating a bank connection for such user
# Bootstrapping such connection.
echo Bootstrapping the bank connection
-./bin/libeufin-cli \
+libeufin-cli \
connections sync $NEXUS_BANK_CONNECTION_NAME
# Download bank accounts.
echo Download bank accounts
-./bin/libeufin-cli \
+libeufin-cli \
connections download-bank-accounts \
$NEXUS_BANK_CONNECTION_NAME
# Import bank account for user.
-./bin/libeufin-cli \
+libeufin-cli \
connections import-bank-account \
--offered-account-id=$ACCOUNT_NAME \
--nexus-bank-account-id=$ACCOUNT_NAME_AT_NEXUS \