reset-submodules.sh 239 B

12345678910
  1. #!/bin/bash -ex
  2. # SPDX-FileCopyrightText: 2024 Emulator Project
  3. # SPDX-License-Identifier: MIT
  4. #
  5. # Modified by AMA25 on 3/5/24
  6. git submodule sync
  7. git submodule foreach --recursive git reset --hard
  8. git submodule update --init --recursive