Check error right away

This commit is contained in:
tmtx 2018-02-03 20:56:37 +02:00
parent 4157c890b0
commit 34c7642ea3

View File

@ -364,10 +364,10 @@ func (p *Project) Validate(path string, fcheck bool) bool {
// file check
if fcheck {
fi, err := os.Stat(path)
if !fi.IsDir() && ext(path) == "" {
if err != nil {
return false
}
if err != nil {
if !fi.IsDir() && ext(path) == "" {
return false
}
if fi.Size() > 0 {