Skip to content

Commit

Permalink
chore: fix install command order
Browse files Browse the repository at this point in the history
Move `git submodule update --init` before `bundle install` to address `The path `/home/phil/kong/docs.konghq.com/app/_src/.repos/kuma/jekyll-kuma-plugins` does not exist.` during `make install` command.

Signed-off-by: Philipp Rudloff <[email protected]>
  • Loading branch information
Philipp Rudloff authored and fabianrbz committed Apr 11, 2024
1 parent af66174 commit 2a45b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ install-prerequisites:

# Installs npm packages and gems.
install: ruby-version-check
git submodule update --init
npm ci
bundle install
git submodule update --init
@if [ ! -f .env ]; then cp .env.example .env; fi

# Using local dependencies, starts a doc site instance on http://localhost:4000.
Expand Down

0 comments on commit 2a45b36

Please sign in to comment.