projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df44b19
)
source: Consolidate filepath.Split calls
author
srinivasreddy
<thatiparthysreenivas@gmail.com>
Sat, 12 Mar 2016 18:16:31 +0000
(23:46 +0530)
committer
Bjørn Erik Pedersen
<bjorn.erik.pedersen@gmail.com>
Thu, 17 Mar 2016 19:11:29 +0000
(20:11 +0100)
source/file.go
patch
|
blob
|
history
diff --git
a/source/file.go
b/source/file.go
index efe604912ecfdacb64d7a55bda3c0d6600bcc34c..2bd6d2e1cb316dc39f99f5c15dc4def2dddefc8d 100644
(file)
--- a/
source/file.go
+++ b/
source/file.go
@@
-92,8
+92,7
@@
func NewFile(relpath string) *File {
relpath: relpath,
}
- f.dir, _ = filepath.Split(f.relpath)
- _, f.logicalName = filepath.Split(f.relpath)
+ f.dir, f.logicalName = filepath.Split(f.relpath)
f.ext = strings.TrimPrefix(filepath.Ext(f.LogicalName()), ".")
f.section = helpers.GuessSection(f.Dir())
f.uniqueID = helpers.Md5String(f.LogicalName())