summaryrefslogtreecommitdiff
path: root/cmd/install/install.go
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2018-09-10 11:07:58 +0300
committerGitHub <[email protected]>2018-09-10 11:07:58 +0300
commit0d98d7ee195f007b3453c002780ed80c76e7c806 (patch)
tree1d2acfc7e9f4a028a0e05aebaf71e7ad1dde77e9 /cmd/install/install.go
parentc43123851dc34b5c712ef0298118ae2da47e1365 (diff)
parent6db5f134c9885f9dcecf30c4ffba42bd182ccb58 (diff)
Merge pull request #70 from posener/lint
fix lint issues
Diffstat (limited to 'cmd/install/install.go')
-rw-r--r--cmd/install/install.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/install/install.go b/cmd/install/install.go
index 4a70624..dfa1963 100644
--- a/cmd/install/install.go
+++ b/cmd/install/install.go
@@ -51,7 +51,7 @@ func Uninstall(cmd string) error {
for _, i := range is {
errI := i.Uninstall(cmd, bin)
if errI != nil {
- multierror.Append(err, errI)
+ err = multierror.Append(err, errI)
}
}