mirror of
https://codeberg.org/h3xx/simplify_static_dir
synced 2024-08-14 23:57:24 +00:00
62f2503cb0
That's what .editorconfig is for.
12 lines
245 B
Bash
Executable file
12 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"
|