File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
# the build context to the docker image build server
3
3
/build
4
4
5
- # in-tree builds
6
- /deps
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ REPO_ROOT="$(dirname "$0")"/..
21
21
TEMPDIR=$( mktemp -d)
22
22
SOLDIR=" $TEMPDIR /solidity_$versionstring /"
23
23
mkdir " $SOLDIR "
24
+ # Ensure that submodules are initialized.
25
+ git submodule update --init --recursive
24
26
# Store the current source
25
27
git checkout-index -a --prefix=" $SOLDIR "
26
28
# shellcheck disable=SC2016
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ DIR=$(mktemp -d)
16
16
(
17
17
cd " $DIR "
18
18
19
- git clone --depth 2 https://github.com/ethereum/solidity.git -b " $branch "
19
+ git clone --recursive -- depth 2 https://github.com/ethereum/solidity.git -b " $branch "
20
20
cd solidity
21
21
commithash=$( git rev-parse --short=8 HEAD)
22
22
echo -n " $commithash " > commit_hash.txt
You can’t perform that action at this time.
0 commit comments