summaryrefslogtreecommitdiff
path: root/.gitlab/fix-submodules.py
blob: 51c9b061831502ff5ac05f91deffce0aead22255 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/python

import re

x = open('.gitmodules').read()
x = re.sub(r"url *= *\.\.", "url = https://git.haskell.org", x)
open('.gitmodules', 'w').write(x)