Skip to content

Commit bc4193e

Browse files
committed
Add Scripts/build_objective_git.py
1 parent a25e85e commit bc4193e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Scripts/build_objective_git.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
import os
3+
4+
this_file = os.path.realpath(__file__)
5+
proj_dir = os.path.abspath(os.path.join(os.path.dirname(this_file), ".."))
6+
os.chdir(proj_dir)
7+
8+
os.system("git submodule update --init --recursive")
9+
os.chdir("External/objective-git")
10+
os.system("script/bootstrap")
11+
os.system("script/update_libgit2")

0 commit comments

Comments
 (0)