diff options
author | Ayke van Laethem <[email protected]> | 2024-02-26 14:44:52 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-03-24 13:04:47 +0100 |
commit | d628e3e2cb6f767dc5367bc43fb14751a509404a (patch) | |
tree | 29ad39275551411968b0a87032ddb386367a386f /Dockerfile | |
parent | d97e4dbccf73b42819b1b0c0692490170e753212 (diff) | |
download | tinygo-d628e3e2cb6f767dc5367bc43fb14751a509404a.tar.gz tinygo-d628e3e2cb6f767dc5367bc43fb14751a509404a.zip |
ci: don't add --recursive when updating submodules
It's not generally needed. It was added in
https://github.com/tinygo-org/tinygo/pull/3958 to fix an issue with
binaryen that has since been fixed in a different way, so we don't need
the googletest dependency anymore.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index d54719e25..eb99e0e95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ COPY . /tinygo # build the compiler and tools RUN cd /tinygo/ && \ - git submodule update --init --recursive && \ + git submodule update --init && \ make gen-device -j4 && \ make build/release |