mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-03-02 16:59:32 +00:00
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:
@@ -112,7 +112,7 @@ section_install()
|
|||||||
|
|
||||||
cheat-databases)
|
cheat-databases)
|
||||||
msgr run "Installing 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" \
|
bash "$database" \
|
||||||
&& msgr run_done "Cheat: $database run"
|
&& msgr run_done "Cheat: $database run"
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user