Skip to content

Commit b244a62

Browse files
authored
attempting to fix binary-builder
1 parent 122a1cd commit b244a62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/packager/binary/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV CC=clang-${LLVM_VERSION}
77
ENV CXX=clang++-${LLVM_VERSION}
88

99
# libtapi is required to support .tbh format from recent MacOS SDKs
10-
RUN git clone --depth 1 https://github.com/tpoechtrager/apple-libtapi.git \
10+
RUN git clone https://github.com/tpoechtrager/apple-libtapi.git \
1111
&& cd apple-libtapi \
1212
&& git checkout 15dfc2a8c9a2a89d06ff227560a69f5265b692f9 \
1313
&& INSTALLPREFIX=/cctools ./build.sh \
@@ -16,7 +16,7 @@ RUN git clone --depth 1 https://github.com/tpoechtrager/apple-libtapi.git \
1616
&& rm -rf apple-libtapi
1717

1818
# Build and install tools for cross-linking to Darwin (x86-64)
19-
RUN git clone --depth 1 https://github.com/tpoechtrager/cctools-port.git \
19+
RUN git clone https://github.com/tpoechtrager/cctools-port.git \
2020
&& cd cctools-port/cctools \
2121
&& git checkout 2a3e1c2a6ff54a30f898b70cfb9ba1692a55fad7 \
2222
&& ./configure --prefix=/cctools --with-libtapi=/cctools \
@@ -26,7 +26,7 @@ RUN git clone --depth 1 https://github.com/tpoechtrager/cctools-port.git \
2626
&& rm -rf cctools-port
2727

2828
# Build and install tools for cross-linking to Darwin (aarch64)
29-
RUN git clone --depth 1 https://github.com/tpoechtrager/cctools-port.git \
29+
RUN git clone https://github.com/tpoechtrager/cctools-port.git \
3030
&& cd cctools-port/cctools \
3131
&& git checkout 2a3e1c2a6ff54a30f898b70cfb9ba1692a55fad7 \
3232
&& ./configure --prefix=/cctools --with-libtapi=/cctools \

0 commit comments

Comments
 (0)