From 5eba8dfac7ba2b4bf24e269bbd391c6d71fc99b6 Mon Sep 17 00:00:00 2001 From: Romain Bertozzi <romain.bertozzi@savoirfairelinux.com> Date: Fri, 28 Oct 2016 16:38:06 -0400 Subject: [PATCH] conf: support iOS init submodule with commit-msg This patch adds client-ios to the projects that support commit-msg. With it we will be able to add a change-id in commit messages automatically. See 53048b26 for the initial implementation. Reviewed-by: Alexandre Viau <alexandre@alexandreviau.net> Reviewed-by: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> Change-Id: I82bd874aa9d53aaed33330f836e7dc64e51ab827 --- make-ring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-ring.py b/make-ring.py index 008cbd25..33871e6d 100755 --- a/make-ring.py +++ b/make-ring.py @@ -219,7 +219,7 @@ def run_dependencies(args): def run_init(): os.system("git submodule update --init") os.system("git submodule foreach 'git checkout master && git pull'") - for project in ["daemon", "lrc", "client-macosx", "client-gnome", "client-android"]: + for project in ["daemon", "lrc", "client-macosx", "client-gnome", "client-android", "client-ios"]: copy_file("./scripts/commit-msg", ".git/modules/"+project+"/hooks") def copy_file(src, dest): -- GitLab