List submodules to exclude instead of submodules to include. This way the instructions don't stop working every time a new submodule is added

JosJuice 2024-02-02 20:04:50 +01:00
parent 9f00a1960f
commit 41bd5d5f24

@ -39,21 +39,10 @@ crew install xorg_nouveau_driver
## Add necessary submodules and check for new commits
```bash
git submodule update --init --recursive \
Externals/mGBA \
Externals/spirv_cross \
Externals/zlib-ng \
Externals/libspng \
Externals/VulkanMemoryAllocator \
Externals/cubeb \
Externals/implot \
Externals/gtest \
Externals/rcheevos \
Externals/fmt \
Externals/lz4 \
Externals/xxhash \
Externals/enet \
Externals/SDL \
git -c submodule."Externals/Qt".update=none \
-c submodule."Externals/FFmpeg-bin".update=none \
-c submodule."Externals/libadrenotools".update=none \
submodule update --init --recursive \
&& git pull --recurse-submodules
```