From aef775ddf112c086a961dbd1e267be8e612a8565 Mon Sep 17 00:00:00 2001 From: Yindong Xiao Date: Sun, 16 Apr 2023 00:52:24 +0800 Subject: [PATCH] fix missing command of git clone. --- .github/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/Dockerfile b/.github/Dockerfile index 54d125e..625a8f8 100644 --- a/.github/Dockerfile +++ b/.github/Dockerfile @@ -2,7 +2,7 @@ FROM ghcr.io/readon/spinalhdl:master ARG JAVA_EXTRA_OPTS="-Xmx2g -Xms2g" ENV JAVA_OPTS="${JAVA_OPTS} ${JAVA_EXTRA_OPTS}" -RUN https://github.com/SpinalHDL/SpinalTemplateSbt.git && \ +RUN git clone https://github.com/SpinalHDL/SpinalTemplateSbt.git && \ cd SpinalTemplateSbt && \ git submodule update --init --recursive && \ sbt compile && \