From f26d901cdf74d7c477d3bd028a564fcaa253201a Mon Sep 17 00:00:00 2001 From: Brian Flowers Date: Sun, 18 Sep 2016 20:44:07 -0400 Subject: [PATCH] bugfix on compatilibity --- bdsm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bdsm.sh b/bdsm.sh index 9933aad..b3b24fe 100755 --- a/bdsm.sh +++ b/bdsm.sh @@ -328,10 +328,10 @@ configure() if [ "$compatible" -eq "1" ]; then availServices+=($service) fi - done <($(find /home/bdsm/bdsm.d -executable -type f | \ + done < <(find /home/bdsm/bdsm.d -executable -type f | \ sed 's|/home/bdsm/bdsm.d/||g' | \ cut -d'.' -f1 | \ - sort -u)) + sort -u) services=$(cat /home/bdsm/.bdsm.conf.tmp | grep ":$host{" | \ sed 's/.*{\(.*\)}/\1/g' | tr ';' ' ') -- 1.8.3.1