From 88eceaf1942f3a2eaa1456c9247a8c4027ef0f36 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Sat, 7 Feb 2026 22:45:08 +0200 Subject: [PATCH] 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. --- local/bin/dfm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/bin/dfm b/local/bin/dfm index 348cecf..cdd4dae 100755 --- a/local/bin/dfm +++ b/local/bin/dfm @@ -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