From 2c6a7b47743e3da5bb7da59e5500df6b30603352 Mon Sep 17 00:00:00 2001 From: Felipe da Veiga Leprevost Date: Fri, 15 May 2020 16:47:51 -0400 Subject: [PATCH] testing ineffassig correction --- lib/ext/peptideprophet/win/win.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ext/peptideprophet/win/win.go b/lib/ext/peptideprophet/win/win.go index e8b2353a..3e48fc13 100644 --- a/lib/ext/peptideprophet/win/win.go +++ b/lib/ext/peptideprophet/win/win.go @@ -11,13 +11,13 @@ import ( // WinInteractParser deploys InteractParser.exe func WinInteractParser(s string) { - bin, e := Asset("InteractParser.exe") - if e != nil { + bin, e1 := Asset("InteractParser.exe") + if e1 != nil { msg.DeployAsset(errors.New("InteractParser"), "Cannot read bin InteractParser") } - e = ioutil.WriteFile(s, bin, sys.FilePermission()) - if e != nil { + e2 := ioutil.WriteFile(s, bin, sys.FilePermission()) + if e2 != nil { msg.DeployAsset(errors.New("InteractParser"), "Cannot deploy InteractParser") }