diff options
| author | Lars Kellogg-Stedman <lars@oddbit.com> | 2020-04-11 08:59:51 -0400 |
|---|---|---|
| committer | Lars Kellogg-Stedman <lars@oddbit.com> | 2020-04-11 09:02:52 -0400 |
| commit | abf79de785b8cdd516d8bd546236263e943485a5 (patch) | |
| tree | 9e273a3caeacb112d3d5e715e4fcf67457105323 /.gitmodules | |
| parent | 44cf7988c04e7390a713b351e72d75b1708de20c (diff) | |
Fix bad submodule path
The repository URL for extmod/ulab had a trailing slash, causing
errors when trying to clone it.
Closes #2762
Diffstat (limited to '.gitmodules')
| -rw-r--r-- | .gitmodules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitmodules b/.gitmodules index 5c3387077..365d9ff72 100644 --- a/.gitmodules +++ b/.gitmodules @@ -109,7 +109,7 @@ url = https://github.com/adafruit/Adafruit_CircuitPython_Register.git [submodule "extmod/ulab"] path = extmod/ulab - url = https://github.com/v923z/micropython-ulab/ + url = https://github.com/v923z/micropython-ulab [submodule "frozen/Adafruit_CircuitPython_ESP32SPI"] path = frozen/Adafruit_CircuitPython_ESP32SPI url = https://github.com/adafruit/Adafruit_CircuitPython_ESP32SPI |
