diff --git a/Makefile b/Makefile index f15abe1..5a8a36d 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,7 @@ .PHONY: git-init conf-init git-init: @if [ ! -d .git ]; then \ - echo "Initializing git repository..."; \ - git init; \ - git add .; \ - git commit -m "Initial commit"; \ + git submodule update --init; \ else \ echo "Git repository already initialized."; \ fi