File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ pub(super) const EXE_NAME: &str = "git";
80
80
/// Invoke the git executable to obtain the origin configuration, which is cached and returned.
81
81
///
82
82
/// The git executable is the one found in PATH or an alternative location.
83
- pub ( super ) static EXE_INFO : Lazy < Option < BString > > = Lazy :: new ( exe_info) ;
83
+ pub ( super ) static GIT_HIGHEST_PRIORITY_CONFIG_PATH : Lazy < Option < BString > > = Lazy :: new ( exe_info) ;
84
84
85
85
#[ cfg( windows) ]
86
86
const NULL_DEVICE : & str = "NUL" ;
@@ -171,7 +171,7 @@ pub(super) fn install_config_path() -> Option<&'static BStr> {
171
171
exec_path. push ( "gitconfig" ) ;
172
172
return crate :: os_string_into_bstring ( exec_path. into ( ) ) . ok ( ) ;
173
173
}
174
- EXE_INFO . clone ( )
174
+ GIT_HIGHEST_PRIORITY_CONFIG_PATH . clone ( )
175
175
} ) ;
176
176
PATH . as_ref ( ) . map ( AsRef :: as_ref)
177
177
}
You can’t perform that action at this time.
0 commit comments