mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-01 10:28:52 -05:00
Fixes the long broken UpdateSubmodules.sh shell script. The script now consists of a single git command.
7 lines
218 B
Bash
Executable File
7 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
# For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
echo "Updating all submodules."
|
|
git submodule update --init --recursive
|