mirror of
https://codeberg.org/h3xx/simplify_static_dir
synced 2024-08-14 23:57:24 +00:00
Move library code to lib/
Fixes accidental inclusion of test instrumentation into the all-in-one script.
This commit is contained in:
parent
9dc3e4578c
commit
4d4edd5e9d
8 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue