mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-22 15:53:29 +01:00
Remove .unwrap() in insert call to prevent crashes
This commit is contained in:
parent
a46191b8bf
commit
2258fb2713
@ -114,7 +114,7 @@ impl<'a> SyntaxMapping<'a> {
|
||||
.to_string_lossy(),
|
||||
MappingTarget::MapTo("Git Config"),
|
||||
)
|
||||
.unwrap();
|
||||
.ok();
|
||||
|
||||
mapping
|
||||
.insert(
|
||||
@ -124,7 +124,7 @@ impl<'a> SyntaxMapping<'a> {
|
||||
.to_string_lossy(),
|
||||
MappingTarget::MapTo("Git Ignore"),
|
||||
)
|
||||
.unwrap();
|
||||
.ok();
|
||||
|
||||
mapping
|
||||
.insert(
|
||||
@ -134,7 +134,7 @@ impl<'a> SyntaxMapping<'a> {
|
||||
.to_string_lossy(),
|
||||
MappingTarget::MapTo("Git Attributes"),
|
||||
)
|
||||
.unwrap();
|
||||
.ok();
|
||||
}
|
||||
|
||||
mapping
|
||||
|
Loading…
Reference in New Issue
Block a user