Remove lingering mentions of Bower

Bower is no longer used
This commit is contained in:
Ben Schwartz 2021-02-22 14:29:31 -05:00
parent 78407ddc69
commit 23e0600898
6 changed files with 735 additions and 2472 deletions

View file

@ -18,8 +18,7 @@
readonly WRAPPER='third_party/shellcheck/run.sh'
declare -ar START=(src scripts "${WRAPPER}")
readonly EXCLUDE='*/bower_components'
# From the specified starting points, prune excluded paths or
# From the specified starting points,
# run shellcheck over all files ending in .sh.
find "${START[@]}" -path "${EXCLUDE}" -prune -o -name '*.sh' -exec "${WRAPPER}" {} +
find "${START[@]}" -name '*.sh' -exec "${WRAPPER}" {} +