Skip to content

Commit c1526ae

Browse files
committed
build: Fix *.wrap exclude pattern in .gitignore
The current rules trigger git to to complain with $ git add subprojects/openssl.wrap The following paths are ignored by one of your .gitignore files: subprojects We need to keep the parent directory in the tracking domain and just filter out all sub directories and files except the wrap files. Signed-off-by: Daniel Wagner <[email protected]>
1 parent d04aa8b commit c1526ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ cscope.*
2929

3030
.build
3131

32-
subprojects
32+
subprojects/*
3333
!subprojects/*.wrap

0 commit comments

Comments
 (0)