From fbdc20dfa5c4d57519fdf1199e5cc82786c0fc4a Mon Sep 17 00:00:00 2001 From: Green Sky Date: Thu, 6 Oct 2022 21:36:02 +0200 Subject: [PATCH] fix: git clone toxcore recursive --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8daf3ed..a3ccc33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: libx11-dev python3-dev pkg-config && - git clone --depth=1 https://github.com/TokTok/c-toxcore && + git clone --depth=1 --recursive https://github.com/TokTok/c-toxcore && cd c-toxcore && cmake . -B_build -DBOOTSTRAP_DAEMON=OFF && cd _build && @@ -85,7 +85,7 @@ jobs: make python3-dev pkg-config && - git clone --depth=1 https://github.com/TokTok/c-toxcore && + git clone --depth=1 --recursive https://github.com/TokTok/c-toxcore && cd c-toxcore && cmake . -B_build -DBOOTSTRAP_DAEMON=OFF && cd _build &&