Skip to content

Commit

Permalink
🐛 Downloade submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianKropp committed Dec 9, 2024
1 parent dfb490c commit 5a0c6fd
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ endif
@echo "All dependencies are installed"

build:
build:
@if [ ! "$$(ls -A transcription-service)" ]; then \
git submodule update --init --recursive; \
fi
@if [ ! "$$(ls -A changeset-grpc)" ]; then \
git submodule update --init --recursive; \
fi


@cd bot && go mod tidy
@cd changeset-grpc && if [ ! -d "node_modules" ]; then npm install; fi

Expand Down

0 comments on commit 5a0c6fd

Please sign in to comment.