6 lines
165 B
Plaintext
6 lines
165 B
Plaintext
|
#!/bin/bash
|
||
|
# Docker hub does a recursive clone, then checks the branch out,
|
||
|
# so when a PR adds a submodule (or updates it), it fails.
|
||
|
|
||
|
git submodule update --init
|