aboutsummaryrefslogtreecommitdiffstats
path: root/build/update-license.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-10 05:53:17 +0800
committerGitHub <noreply@github.com>2017-01-10 05:53:17 +0800
commit02b67558e8eaa7b34a28b8dd0223824bbbb52349 (patch)
tree33bbc5057d4546d93d6d0e92b90eef19b49abb83 /build/update-license.go
parent91c8f87fb128c070b6c557a142e25d4428c96487 (diff)
parentb9b3efb09f9281a5859646d2dcf36b5813132efb (diff)
downloaddexon-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar
dexon-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.gz
dexon-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.bz2
dexon-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.lz
dexon-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.xz
dexon-02b67558e8eaa7b34a28b8dd0223824bbbb52349.tar.zst
dexon-02b67558e8eaa7b34a28b8dd0223824bbbb52349.zip
Merge pull request #3535 from fjl/all-ineffassign
all: fix ineffectual assignments
Diffstat (limited to 'build/update-license.go')
-rw-r--r--build/update-license.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/update-license.go b/build/update-license.go
index f3335b119..cc713aa6c 100644
--- a/build/update-license.go
+++ b/build/update-license.go
@@ -185,7 +185,7 @@ func getFiles() []string {
files = append(files, line)
})
if err != nil {
- log.Fatalf("error getting files:", err)
+ log.Fatal("error getting files:", err)
}
return files
}