Skip to content

Commit

Permalink
Merge pull request #2230 from fox-forks/hyperupcall-fix-cleanfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
seefood authored Nov 6, 2024
2 parents 1ad7e79 + edec648 commit 473e26e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
13 changes: 1 addition & 12 deletions clean_files.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
aliases/
docs/
hooks/
lib/
scripts/

# root files
Expand Down Expand Up @@ -78,18 +79,6 @@ completion/available/vuejs.completion.bash
completion/available/wpscan.completion.bash
completion/available/yarn.completion.bash

# libraries
lib/appearance.bash
lib/colors.bash
lib/command_duration.bash
lib/helpers.bash
lib/history.bash
lib/log.bash
lib/preexec.bash
lib/preview.bash
lib/search.bash
lib/utilities.bash

# plugins
#
plugins/available/alias-completion.plugin.bash
Expand Down
2 changes: 1 addition & 1 deletion lint_clean_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mapfile -t FILES < <(
cat clean_files.txt \
| grep -E -v '^\s*$' \
| grep -E -v '^\s*#' \
| xargs -n1 -I{} find "{}" -type f
| xargs -I{} find "{}" -type f
)

# We clear the BASH_IT variable to help the shellcheck checker
Expand Down

0 comments on commit 473e26e

Please sign in to comment.