From 6209e84ba6ca4555f29ec3d63818e7fe0da7e3e9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 24 Nov 2021 10:41:55 +0530 Subject: [PATCH] use a summary for post rebase form generation --- setup/git_post_rewrite_hook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/git_post_rewrite_hook.py b/setup/git_post_rewrite_hook.py index 48170a279d..56ca6eadbd 100755 --- a/setup/git_post_rewrite_hook.py +++ b/setup/git_post_rewrite_hook.py @@ -12,4 +12,4 @@ os.chdir(base) action = [x.decode('utf-8') if isinstance(x, bytes) else x for x in sys.argv[1:]][0] if action == 'rebase': - subprocess.check_call(['./setup.py', 'gui']) + subprocess.check_call(['./setup.py', 'gui', '--summary'])