summaryrefslogtreecommitdiff
path: root/.gitlab
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2018-12-17 19:41:22 -0500
committerBen Gamari <ben@smart-cactus.org>2018-12-17 22:15:22 -0500
commit90ceafa8b9ad60e3c7b72cdd2dacdbeb96bdcddc (patch)
tree1f30235131318c1a9a046767239ac8cd6da3a0ab /.gitlab
parentf109865fba14112d7cb3840111bdfd985d81c0c3 (diff)
downloadhaskell-90ceafa8b9ad60e3c7b72cdd2dacdbeb96bdcddc.tar.gz
gitlab: Drop submodules hack
Diffstat (limited to '.gitlab')
-rw-r--r--.gitlab/fix-submodules.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/.gitlab/fix-submodules.py b/.gitlab/fix-submodules.py
deleted file mode 100644
index 51c9b06183..0000000000
--- a/.gitlab/fix-submodules.py
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/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)
-