summaryrefslogtreecommitdiff
path: root/archive.c
diff options
context:
space:
mode:
authorJean-Noël AVILA <avila.jn@gmail.com>2012-12-08 20:04:39 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-12-18 06:07:23 (GMT)
commit94bc671a1f2e8610de475c2494d2763355a99f65 (patch)
treeee7215f3ca5209152ba36b82955d8e12160fb425 /archive.c
parent24a62db7bbcbd8083bd0070ecd434205489629ed (diff)
downloadgit-94bc671a1f2e8610de475c2494d2763355a99f65.zip
git-94bc671a1f2e8610de475c2494d2763355a99f65.tar.gz
git-94bc671a1f2e8610de475c2494d2763355a99f65.tar.bz2
Add directory pattern matching to attributes
The manpage of gitattributes says: "The rules how the pattern matches paths are the same as in .gitignore files" and the gitignore pattern matching has a pattern ending with / for directory matching. This rule is specifically relevant for the 'export-ignore' rule used for git archive. Signed-off-by: Jean-Noel Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive.c')
-rw-r--r--archive.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/archive.c b/archive.c
index 4666404..93e00bb 100644
--- a/archive.c
+++ b/archive.c
@@ -120,6 +120,8 @@ static int write_archive_entry(const unsigned char *sha1, const char *base,
strbuf_add(&path, args->base, args->baselen);
strbuf_add(&path, base, baselen);
strbuf_addstr(&path, filename);
+ if (S_ISDIR(mode) || S_ISGITLINK(mode))
+ strbuf_addch(&path, '/');
path_without_prefix = path.buf + args->baselen;
setup_archive_check(check);
@@ -130,7 +132,6 @@ static int write_archive_entry(const unsigned char *sha1, const char *base,
}
if (S_ISDIR(mode) || S_ISGITLINK(mode)) {
- strbuf_addch(&path, '/');
if (args->verbose)
fprintf(stderr, "%.*s\n", (int)path.len, path.buf);
err = write_entry(args, sha1, path.buf, path.len, mode);