1
0
Fork 1
mirror of https://github.com/vbatts/tar-split.git synced 2024-11-16 05:18:38 +00:00

Merge pull request #4 from vbatts/fix_base_dir_path

walk: when directory is root, use "."
This commit is contained in:
Vincent Batts 2016-04-13 15:39:09 -04:00
commit a544d45c4c

View file

@ -36,6 +36,7 @@ func Walk(root string, exlcudes []ExcludeFunc, keywords []string) (*DirectoryHie
}
}
entryPathName := filepath.Base(path)
if info.IsDir() {
creator.DH.Entries = append(creator.DH.Entries, Entry{
Type: BlankType,
@ -46,13 +47,14 @@ func Walk(root string, exlcudes []ExcludeFunc, keywords []string) (*DirectoryHie
if creator.curDir != nil {
creator.DH.Entries = append(creator.DH.Entries, Entry{
Pos: len(creator.DH.Entries),
Raw: "# " + filepath.Join(creator.curDir.Path(), filepath.Base(path)),
Raw: "# " + filepath.Join(creator.curDir.Path(), entryPathName),
Type: CommentType,
})
} else {
entryPathName = "."
creator.DH.Entries = append(creator.DH.Entries, Entry{
Pos: len(creator.DH.Entries),
Raw: "# " + filepath.Base(path),
Raw: "# .",
Type: CommentType,
})
}
@ -105,7 +107,7 @@ func Walk(root string, exlcudes []ExcludeFunc, keywords []string) (*DirectoryHie
}
e := Entry{
Name: filepath.Base(path),
Name: entryPathName,
Pos: len(creator.DH.Entries),
Type: RelativeType,
Set: creator.curSet,