command: error handling before file close (#6681)

This commit is contained in:
Lars Lehtonen
2019-11-13 05:18:20 -08:00
committed by Tim Gross
parent 1596a62ce3
commit bbefae5506

View File

@@ -421,10 +421,10 @@ func (j *JobGetter) ApiJob(jpath string) (*api.Job, error) {
return nil, fmt.Errorf("Error getting jobfile from %q: %v", jpath, err)
} else {
file, err := os.Open(job.Name())
defer file.Close()
if err != nil {
return nil, fmt.Errorf("Error opening file %q: %v", jpath, err)
}
defer file.Close()
jobfile = file
}
}