summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2023-11-24 19:22:12 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2023-11-24 19:22:12 +0100
commit3d7987189ce99a13bafd97216e2c0e91b2072a94 (patch)
treeddd3c16f88ee596055a2fc1265233d4dbaab8f72
parent5c3b4d7fd61b625621cf2a7aa26649303dc69fde (diff)
check-efa-urls: use local source rather than system installation
-rwxr-xr-xscripts/check-efa-urls2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-efa-urls b/scripts/check-efa-urls
index 254a85f..95314c0 100755
--- a/scripts/check-efa-urls
+++ b/scripts/check-efa-urls
@@ -20,7 +20,7 @@ VVS Stuttgart Schwabstraße"
echo $checks | while read service name place; do
echo -n "${service} ... "
- if bin/efa-m -s $service $name $place > /dev/null; then
+ if perl -Ilib bin/efa-m -s $service $name $place > /dev/null; then
echo OK
fi
done