Commit 9559e583 by Nicolas Capens

Revert "Remove git submodules before rolling into Android"

This reverts commit efe254de. b/189557997 was addressed by removing .gitmodules in the AutoRoller: https://skia-review.googlesource.com/c/buildbot/+/415736 Change-Id: Iec5ea73fce689f5286aedc486447ea0f498912b7 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/54868Tested-by: 's avatarNicolas Capens <nicolascapens@google.com> Reviewed-by: 's avatarJason Macnak <natsu@google.com> Reviewed-by: 's avatarAlexis Hétu <sugoi@google.com>
parent 81ba5f47
#!/bin/bash
# This script is called by the SwiftShader into Android AutoRoller:
# https://autoroll.skia.org/r/swiftshader-android
# Remove git submodules
# Android does not allow remote submodules (b/189557997)
git config --file .gitmodules --get-regexp path | awk '{ system("git rm " $2) }'
rm .gitmodules
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment