summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
authorJosip Sokcevic <sokcevic@google.com>2024-12-03 21:29:01 +0000
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2024-12-03 22:27:56 +0000
commitcf411b3f03c3bd6001701136be5a874a85f1dc91 (patch)
treed4e78902f1cfb5664622e071fe82926bf7106efb /main.py
parent1feecbd91eac1b4a30e74f5356b61607d13ce89f (diff)
downloadgit-repo-cf411b3f03c3bd6001701136be5a874a85f1dc91.tar.gz
Remove gitc support from repo
gitc is no longer available. Change-Id: I0cbfdf936832f2cdd4876104ae3cc5a6e26154e2 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/444841 Reviewed-by: Gavin Mak <gavinmak@google.com> Commit-Queue: Josip Sokcevic <sokcevic@google.com> Tested-by: Josip Sokcevic <sokcevic@google.com>
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/main.py b/main.py
index 9f415e38..707b74ad 100755
--- a/main.py
+++ b/main.py
@@ -45,7 +45,6 @@ from command import InteractiveCommand
45from command import MirrorSafeCommand 45from command import MirrorSafeCommand
46from editor import Editor 46from editor import Editor
47from error import DownloadError 47from error import DownloadError
48from error import GitcUnsupportedError
49from error import InvalidProjectGroupsError 48from error import InvalidProjectGroupsError
50from error import ManifestInvalidRevisionError 49from error import ManifestInvalidRevisionError
51from error import ManifestParseError 50from error import ManifestParseError
@@ -308,10 +307,6 @@ class _Repo:
308 outer_client=outer_client, 307 outer_client=outer_client,
309 ) 308 )
310 309
311 if Wrapper().gitc_parse_clientdir(os.getcwd()):
312 logger.error("GITC is not supported.")
313 raise GitcUnsupportedError()
314
315 try: 310 try:
316 cmd = self.commands[name]( 311 cmd = self.commands[name](
317 repodir=self.repodir, 312 repodir=self.repodir,