From df6bb72807408bc0eab59e729ea8c0b69fe39388 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Sat, 1 Oct 2016 21:48:14 +0200 Subject: git-serve: Support `git {receive,upload}-pack` Add support for the `git receive-pack` and `git upload-pack` commands which are aliases for git-receive-pack and git-upload-pack, respectively. Signed-off-by: Lukas Fleischer --- git-interface/git-serve.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'git-interface/git-serve.py') diff --git a/git-interface/git-serve.py b/git-interface/git-serve.py index 5f3b26dd..ebfef946 100755 --- a/git-interface/git-serve.py +++ b/git-interface/git-serve.py @@ -305,6 +305,10 @@ def main(): if remote_addr not in maintenance_exc: die("The AUR is down due to maintenance. We will be back soon.") + if action == 'git' and cmdargv[1] in ('upload-pack', 'receive-pack'): + action = action + '-' + cmdargv[1] + del cmdargv[1] + if action == 'git-upload-pack' or action == 'git-receive-pack': if len(cmdargv) < 2: die_with_help("{:s}: missing path".format(action)) -- cgit v1.2.3-24-g4f1b