Skip to content

Commit

Permalink
Fixed the glob for **.aws
Browse files Browse the repository at this point in the history
  • Loading branch information
mxaddict committed Dec 7, 2023
1 parent 56a8c11 commit 28786fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/syntax_mapping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ impl<'a> SyntaxMapping<'a> {
.unwrap();

// Aws credentials and config file
for glob in &["*.aws/credentials", "*.aws/config"] {
for glob in &["**/.aws/credentials", "**/.aws/config"] {
mapping.insert(glob, MappingTarget::MapTo("INI")).unwrap()
}

Expand Down

0 comments on commit 28786fa

Please sign in to comment.