1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-01-31 10:11:07 +00:00

Remove .unwrap() to prevent crashes

This commit is contained in:
sharkdp 2020-10-01 20:25:33 +02:00 committed by David Peter
parent 9c4c3e965b
commit a46191b8bf

View File

@ -111,8 +111,7 @@ impl<'a> SyntaxMapping<'a> {
&git_config_path &git_config_path
.join("config") .join("config")
.into_os_string() .into_os_string()
.to_str() .to_string_lossy(),
.unwrap(),
MappingTarget::MapTo("Git Config"), MappingTarget::MapTo("Git Config"),
) )
.unwrap(); .unwrap();
@ -122,8 +121,7 @@ impl<'a> SyntaxMapping<'a> {
&git_config_path &git_config_path
.join("ignore") .join("ignore")
.into_os_string() .into_os_string()
.to_str() .to_string_lossy(),
.unwrap(),
MappingTarget::MapTo("Git Ignore"), MappingTarget::MapTo("Git Ignore"),
) )
.unwrap(); .unwrap();
@ -133,8 +131,7 @@ impl<'a> SyntaxMapping<'a> {
&git_config_path &git_config_path
.join("attributes") .join("attributes")
.into_os_string() .into_os_string()
.to_str() .to_string_lossy(),
.unwrap(),
MappingTarget::MapTo("Git Attributes"), MappingTarget::MapTo("Git Attributes"),
) )
.unwrap(); .unwrap();