Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ Checkdoc's spell checker may not recognize some words, causing the ~lint-checkdo
+ Commands in library ~makem.el~ locate the shell script automatically in the project's directories and submodules.
+ Upgrade built-in packages when installing dependencies. ([[https://github.com/alphapapa/makem.sh/issues/41][#41]]. Thanks to [[https://ushin.org/][USHIN]] for sponsoring this fix.)

*Fixed*
+ File exclusion regular expression. ([[https://github.com/alphapapa/makem.sh/pull/32][#32]]. Thanks to [[https://github.com/fritzgrabo][Fritz Grabo]].)

*Credits*
+ Thanks to [[https://ushin.org/][ushin]] for contributing the subdirectory/submodule-related changes.

Expand Down
2 changes: 1 addition & 1 deletion makem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ function dirnames {

function filter-files-exclude-default {
# Filter out paths (STDIN) which should be excluded by default.
grep -E -v "(/\.cask/|-autoloads.el|.dir-locals)"
grep -E -v "(/\.cask/|-autoloads\.el|\.dir-locals)"
}

function filter-files-exclude-args {
Expand Down