diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-11-24 19:22:12 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-11-24 19:22:12 +0100 |
commit | 3d7987189ce99a13bafd97216e2c0e91b2072a94 (patch) | |
tree | ddd3c16f88ee596055a2fc1265233d4dbaab8f72 /scripts | |
parent | 5c3b4d7fd61b625621cf2a7aa26649303dc69fde (diff) |
check-efa-urls: use local source rather than system installation
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-efa-urls | 2 |
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 |