mirror of
https://gitgud.io/Melon__Bread/gnu-plus-dotfiles.git
synced 2025-02-26 14:19:48 -05:00
10 lines
249 B
Plaintext
10 lines
249 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Because Git submodule commands cannot operate without a work tree, they must
|
||
|
# be run from within $HOME (assuming this is the root of your dotfiles)
|
||
|
cd "$HOME"
|
||
|
|
||
|
echo "Init submodules"
|
||
|
yadm submodule update --recursive --init
|
||
|
|