summaryrefslogtreecommitdiff
path: root/share/find-missing-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'share/find-missing-wrapper')
-rwxr-xr-xshare/find-missing-wrapper2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/find-missing-wrapper b/share/find-missing-wrapper
index ae5792c..df5112d 100755
--- a/share/find-missing-wrapper
+++ b/share/find-missing-wrapper
@@ -1,6 +1,6 @@
#!/bin/bash
jq '.[] | .ds100' stations.json | cut -d '"' -f 2 | shuf | while read line; do
echo $line
- ./find-missing $line | tee -a missing.txt
+ perl -I../lib ./find-missing $line | tee -a missing.txt
sleep $(( RANDOM % 10 ))
done