summaryrefslogtreecommitdiffstats
path: root/bin/t
blob: b6c065a9fea8737e0ba4fba521b0d49dcceb33ea (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -eu
set -o pipefail

if [ -d blib ]; then
    perl -Mblib "$@"
else
    perl -Ilib "$@"
fi