fix(dfm): restrict cheat-databases glob to .sh files only

The install-cheat-* glob was matching .md documentation files, causing
errors when bash tried to execute them.
This commit is contained in:
2026-02-07 22:45:08 +02:00
parent 6d72003446
commit 88eceaf194

View File

@@ -112,7 +112,7 @@ section_install()
cheat-databases)
msgr run "Installing cheat databases..."
for database in "$DOTFILES"/scripts/install-cheat-*; do
for database in "$DOTFILES"/scripts/install-cheat-*.sh; do
bash "$database" \
&& msgr run_done "Cheat: $database run"
done