remove unused err

This commit is contained in:
astaxie 2014-06-23 23:03:10 +08:00
parent 82581a7c30
commit 620f052d93
1 changed files with 1 additions and 1 deletions

2
run.go
View File

@ -109,7 +109,7 @@ func runApp(cmd *Command, args []string) {
if _, err := os.Stat(path.Join(crupath, "swagger")); err != nil {
if os.IsNotExist(err) {
downloadFromUrl(swaggerlink, "swagger.zip")
err := unzipAndDelete("swagger.zip", "swagger")
unzipAndDelete("swagger.zip", "swagger")
}
}
}