ref: 2d8e15a5651408fe40b7365334625c487625a1e0
parent: 06b1a88358e69f4182fdd82da998810054f5a88f
author: Dan Hersam <[email protected]>
date: Tue Jan 27 15:09:10 EST 2015
Version uses binary name instead of hugo On Windows the binary name is hugo.exe and running hugo version results in this error: GetFileAttributesEx D:\Dev\Go\gopath\bin\hugo: The system cannot find the file specified. This fixes that error and allows the binary name to be something other than hugo on any OS.
--- a/commands/version.go
+++ b/commands/version.go
@@ -58,7 +58,7 @@
fmt.Println(err)
return
}
- fi, err := os.Lstat(filepath.Join(dir, "hugo"))
+ fi, err := os.Lstat(filepath.Join(dir, filepath.Base(fname)))
if err != nil {
fmt.Println(err)
return