From 7490bfa4f4a65240706534a64572b16dedf326a0 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 21 May 2015 00:03:04 +0900 Subject: [PATCH] internal: Bug fix: license.txt was changed to LICENSE --- internal/license.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/license.go b/internal/license.go index 864118f7c..ca84bd18d 100644 --- a/internal/license.go +++ b/internal/license.go @@ -23,7 +23,7 @@ import ( func LicenseComment() (string, error) { _, path, _, _ := runtime.Caller(0) - licensePath := filepath.Join(filepath.Dir(path), "..", "license.txt") + licensePath := filepath.Join(filepath.Dir(path), "..", "LICENSE") l, err := ioutil.ReadFile(licensePath) if err != nil { return "", err