commit 0a75820e34ef4393b8c53870d1f8a86f6f0ab98f
parent 049127a8fedf0336c473c97fa32b11a98cd83024
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Sat, 8 Jun 2019 18:21:25 +0200
check file exists
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/taler-deployment-shared-data b/bin/taler-deployment-shared-data
@@ -14,7 +14,7 @@ fi
SHARED_DATA=$(taler-config -s paths -o taler_deployment_shared -f)
# Check shared-data/ exists & has write permissions for group.
-if ! test -f $SHARED_DATA; then
+if ! test -e $SHARED_DATA; then
echo "Please bootstrap your setup first (run 'bootstrap-bluegreen' script?)."
exit 1
fi