Move library code to lib/

Fixes accidental inclusion of test instrumentation into the all-in-one
script.
This commit is contained in:
Dan Church 2023-06-29 12:59:27 -05:00
parent 9dc3e4578c
commit 4d4edd5e9d
Signed by: h3xx
GPG Key ID: EA2BF379CD2CDBD0
8 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,6 @@ echo "Outputting to $OUT" >&2
shopt -s globstar
"$WORKDIR/util/squash" \
"$WORKDIR/simplify_static_dir-main.pl" \
"$WORKDIR"/**/*.pm \
"$WORKDIR"/lib/**/*.pm \
> "$OUT"
chmod +x -- "$OUT"

View File

@ -107,7 +107,7 @@ use Pod::Usage qw/ pod2usage /;
# :squash-remove-start:
# (this prepends to the load path)
use FindBin qw//;
use lib $FindBin::RealBin;
use lib "$FindBin::RealBin/lib";
require Directory::Simplify::File;
require Directory::Simplify::FileHash;