simplify_static_dir/make-allinone.sh

13 lines
259 B
Bash
Raw Permalink Normal View History

2022-11-16 17:33:08 +00:00
#!/bin/bash
WORKDIR=${0%/*}
OUT=$WORKDIR/simplify_static_dir.pl
echo "Outputting to $OUT" >&2
shopt -s globstar
"$WORKDIR/util/perl-squasher/squash" \
2022-11-16 17:33:08 +00:00
"$WORKDIR/simplify_static_dir-main.pl" \
"$WORKDIR"/lib/**/*.pm \
2022-11-16 17:33:08 +00:00
> "$OUT"
chmod +x -- "$OUT"