Skip to content
Snippets Groups Projects
Commit bc7e2287 authored by Guillaume Roguez's avatar Guillaume Roguez
Browse files

make-ring.py: auto-detection of submodule name

improve the make-ring.py script to automatically detect
all GIT submodule names and use it during --init operation.

Change-Id: Ib671569fed4b650c35cf4870eec9a7bfd1a42d1d
parent 74e16130
No related branches found
No related tags found
No related merge requests found
......@@ -231,10 +231,17 @@ def run_dependencies(args):
sys.exit(1)
def run_init():
# Extract modules path from '.gitmodules' file
module_names = []
with open('.gitmodules') as fd:
for line in fd.readlines():
if line.startswith('[submodule "'):
module_names.append(line[line.find('"')+1:line.rfind('"')])
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", "client-ios"]:
copy_file("./scripts/commit-msg", ".git/modules/"+project+"/hooks")
for name in module_names:
copy_file("./scripts/commit-msg", ".git/modules/"+name+"/hooks")
def copy_file(src, dest):
print("Copying:" + src + " to " + dest)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment