From 94302e5d6bb417b121237e0dc2b099b641fd7a05 Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Wed, 11 Mar 2026 10:04:12 +0200 Subject: [PATCH] fluster.sh: add one more fluster location If fluster is in the subdir next to fluster.sh, use it. --- fluster.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fluster.sh b/fluster.sh index cb4b74b..e6b19b7 100755 --- a/fluster.sh +++ b/fluster.sh @@ -34,6 +34,10 @@ if [ -r fluster.py ] then echo "Generating $SUMMARY using fluster from the current location" FLUSTER=./fluster.py +elif [ -r $(dirname $0)/fluster/fluster.py ] +then + echo "Generating $SUMMARY using fluster from the current location" + FLUSTER=$(dirname $0)/fluster/fluster.py elif [ "$(which fluster)" != "" ] then echo "Generating $SUMMARY using system-wide fluster"