From ea5046172f4f45a7514967b91a55b033ca4b5d66 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Sun, 29 Nov 2020 17:50:33 +0200 Subject: [PATCH] clone submodule recursively --- .github/workflows/build.yml | 8 ++++---- README.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c015ab6..64f88ea 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: - name: Clone uses: actions/checkout@v1 with: - submodules: true + submodules: recursive - name: Dependencies run: | @@ -39,7 +39,7 @@ jobs: - name: Clone uses: actions/checkout@v1 with: - submodules: true + submodules: recursive - name: Dependencies run: | @@ -65,7 +65,7 @@ jobs: - name: Clone uses: actions/checkout@v1 with: - submodules: true + submodules: recursive - name: Dependencies run: | @@ -89,7 +89,7 @@ jobs: - name: Clone uses: actions/checkout@v1 with: - submodules: true + submodules: recursive - name: Dependencies run: | diff --git a/README.md b/README.md index dcf7baa..a28aa60 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Other projects using **ggwave** or one of its prototypes: ```bash # build -git clone https://github.com/ggerganov/ggwave +git clone https://github.com/ggerganov/ggwave --recursive cd ggwave && mkdir build && cd build cmake .. make @@ -70,7 +70,7 @@ make ### Emscripten: ```bash -git clone https://github.com/ggerganov/ggwave +git clone https://github.com/ggerganov/ggwave --recursive cd ggwave mkdir build && cd build emcmake cmake ..