simplify_static_dir/make-allinone.sh
Dan Church 62f2503cb0
Remove vim modelines
That's what .editorconfig is for.
2023-07-20 13:39:42 -05:00

13 lines
245 B
Bash
Executable file

#!/bin/bash
WORKDIR=${0%/*}
OUT=$WORKDIR/simplify_static_dir.pl
echo "Outputting to $OUT" >&2
shopt -s globstar
"$WORKDIR/util/squash" \
"$WORKDIR/simplify_static_dir-main.pl" \
"$WORKDIR"/lib/**/*.pm \
> "$OUT"
chmod +x -- "$OUT"