Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit a634ee4

Browse files
committed
Remove git initialization on cargo new
This causes initialization to fail Signed-off-by: Darian Plumb <[email protected]>
1 parent ebcf519 commit a634ee4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/tests

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ COPY ./contracts/schema/Cargo.toml ./Cargo.toml
5959
RUN cargo check
6060

6161
WORKDIR /
62-
RUN USER=root cargo new --bin daemon
62+
RUN USER=root cargo new --bin daemon --vcs none
6363
WORKDIR /daemon
6464
COPY ./daemon/Cargo.toml ./Cargo.toml
6565
RUN cargo check
6666

6767
WORKDIR /
68-
RUN USER=root cargo new --bin cli
68+
RUN USER=root cargo new --bin cli --vcs none
6969
WORKDIR /cli
7070
COPY ./cli/Cargo.toml ./Cargo.toml
7171
RUN cargo check
7272

7373
WORKDIR /
74-
RUN USER=root cargo new --bin contracts/track_and_trace
74+
RUN USER=root cargo new --bin contracts/track_and_trace --vcs none
7575
WORKDIR /contracts/track_and_trace
7676

7777
COPY ./contracts/track_and_trace/Cargo.toml ./Cargo.toml

0 commit comments

Comments
 (0)