@@ -23,34 +23,53 @@ def base_dir_path():
23
23
24
24
25
25
def find_windows_git ():
26
- possible_paths = ["git\\ bin\\ git.exe" , "git\\ cmd\\ git.exe" , "Git\\ mingw64\\ libexec\\ git-core\\ git.exe" ]
26
+ possible_paths = ["git\\ bin\\ git.exe" , "git\\ cmd\\ git.exe" , "Git\\ mingw64\\ libexec\\ git-core\\ git.exe" , "C: \\ Program Files \\ Git \\ cmd \\ git.exe" ]
27
27
for path in possible_paths :
28
28
if os .path .exists (path ):
29
29
return path
30
30
31
31
32
+ def prepare_git ():
33
+ if shutil .which ("git" ):
34
+ return True
35
+
36
+ log .info ("Finding git..." )
37
+
38
+ if sys .platform == "win32" :
39
+ git_path = find_windows_git ()
40
+
41
+ if git_path is not None :
42
+ log .info (f"Git not found, but found git in { git_path } , add it to PATH" )
43
+ os .environ ["PATH" ] += os .pathsep + os .path .dirname (git_path )
44
+ return True
45
+ else :
46
+ return False
47
+ else :
48
+ log .error ("git not found, please install git first" )
49
+ return False
50
+
51
+
32
52
def prepare_submodules ():
33
53
frontend_path = base_dir_path () / "frontend" / "dist"
34
54
tag_editor_path = base_dir_path () / "mikazuki" / "dataset-tag-editor" / "scripts"
35
55
36
56
if not os .path .exists (frontend_path ) or not os .path .exists (tag_editor_path ):
37
57
log .info ("submodule not found, try clone..." )
38
58
log .info ("checking git installation..." )
39
- if not shutil .which ("git" ):
40
- if sys .platform == "win32" :
41
- git_path = find_windows_git ()
42
-
43
- if git_path is not None :
44
- log .info (f"Git not found, but found git in { git_path } , add it to PATH" )
45
- os .environ ["PATH" ] += os .pathsep + os .path .dirname (git_path )
46
- return
47
- else :
48
- log .error ("git not found, please install git first" )
49
- sys .exit (1 )
59
+ if not prepare_git ():
60
+ log .error ("git not found, please install git first" )
61
+ sys .exit (1 )
50
62
subprocess .run (["git" , "submodule" , "init" ])
51
63
subprocess .run (["git" , "submodule" , "update" ])
52
64
53
65
66
+ def git_tag (path : str ) -> str :
67
+ try :
68
+ return subprocess .check_output (["git" , "-C" , path , "describe" , "--tags" ]).strip ().decode ("utf-8" )
69
+ except Exception as e :
70
+ return "<none>"
71
+
72
+
54
73
def check_dirs (dirs : List ):
55
74
for d in dirs :
56
75
if not os .path .exists (d ):
0 commit comments