Jasper Blues
Jasper Blues

Reputation: 28776

Latest Jenkins not cloning submodule

I just rebuilt my build-server, updating to the latest version of Jenkins.

(I'm usually fairly up-to-date, but must've been behind the current, given what happened).

This current version of Jenkins / git plugin seems to not be cloning sub-modules.

How to fix this?

Upvotes: 1

Views: 273

Answers (1)

jshawl
jshawl

Reputation: 3483

Try

$ git submodule init

and then

$ git submodule update

to clone the sub-modules.

Upvotes: 2

Related Questions