Skip to content

Commit 28786fa

Browse files
committed
Fixed the glob for **.aws
1 parent 56a8c11 commit 28786fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/syntax_mapping.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ impl<'a> SyntaxMapping<'a> {
157157
.unwrap();
158158

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

0 commit comments

Comments
 (0)