Merge branch 'main' into upgrade-tools

main
Digimer 9 months ago committed by GitHub
commit 4e0aab112d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      striker-ui/Makefile.am
  2. 25
      striker-ui/lsxdist

@ -14,6 +14,7 @@ outpages = \
index.html \ index.html \
init.html \ init.html \
login.html \ login.html \
mail-config.html \
manage-element.html \ manage-element.html \
server.html server.html
outjsmodulesdir = _next outjsmodulesdir = _next

@ -18,17 +18,24 @@
# and # and
# * removes leading "./" and append "\" # * removes leading "./" and append "\"
PPATH="${BASH_SOURCE[0]}"
PNAME="$(basename "$PPATH")"
found=$(find . \ found=$(find . \
-mindepth 1 -maxdepth 1 \ -mindepth 1 \
-not \( -name node_modules -prune \) \ -maxdepth 1 \
-not \( -name *git* -prune \) \ -not \( -name "node_modules" -prune \) \
-not \( -name *husky* -prune \) \ -not \( -name "*git*" -prune \) \
-not \( -name public -prune \) \ -not \( -name "*husky*" -prune \) \
-not \( -name *[Mm]ake* -prune \) \ -not \( -name "public" -prune \) \
-not \( -name [.]env[.]* -prune \) \ -not \( -name "*[Mm]ake*" -prune \) \
-not \( -name "*$(basename ${BASH_SOURCE[0]})*" -prune \) \ -not \( -name "[.]env[.]*" -prune \) \
-not \( -name "*$PNAME*" -prune \) \
-not \( -name ".next" -prune \) \ -not \( -name ".next" -prune \) \
| sed -E 's@^./(.+)$@\1 \\@') -not \( -name "out" -prune \) \
)
found=$(sed -E 's@^./(.+)$@\1 \\@' <<< "$found")
sorted=$(sort <<< "$found") sorted=$(sort <<< "$found")

Loading…
Cancel
Save