Skip to content

Commit f89b385

Browse files
committed
Added --no-recurse-submodules to avoid retrieving the wiki.
1 parent a58db43 commit f89b385

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ A common pattern is a bootstrap file (e.g., `~/.local/libs/bootstrap.sh`) that a
3737

3838
```bash
3939
# include options.bash
40-
command -v git &> /dev/null && git -C ~/.local/share/libs/scripts pull > /dev/null || true
40+
command -v git &> /dev/null && git -C ~/.local/share/libs/scripts pull --no-recurse-submodules > /dev/null || true
4141

4242
. ~/.local/share/libs/scripts/ansi.sh
4343
. ~/.local/share/libs/scripts/args.sh

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ A common pattern is a bootstrap file that auto-updates and sources the core modu
8989

9090
```bash
9191
# include options.bash
92-
command -v git &> /dev/null && git -C ~/.local/share/libs/scripts pull > /dev/null || true
92+
command -v git &> /dev/null && git -C ~/.local/share/libs/scripts pull --no-recurse-submodules > /dev/null || true
9393

9494
. ~/.local/share/libs/scripts/ansi.sh
9595
. ~/.local/share/libs/scripts/args.sh

examples/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Sources core modules so scripts start with full functionality.
88

99
# auto-update
10-
command -v git &> /dev/null && git -C ~/.local/share/libs/scripts pull > /dev/null || true
10+
command -v git &> /dev/null && git -C ~/.local/share/libs/scripts pull --no-recurse-submodules > /dev/null || true
1111

1212
# core modules
1313
. ~/.local/share/libs/scripts/ansi.sh

llms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ A common pattern is a bootstrap file (e.g., `~/.local/libs/bootstrap.sh`) that a
191191

192192
```bash
193193
# include options.bash
194-
command -v git &> /dev/null && git -C ~/.local/share/libs/scripts pull > /dev/null || true
194+
command -v git &> /dev/null && git -C ~/.local/share/libs/scripts pull --no-recurse-submodules > /dev/null || true
195195

196196
. ~/.local/share/libs/scripts/ansi.sh
197197
. ~/.local/share/libs/scripts/args.sh

0 commit comments

Comments
 (0)