Merge branch 'master' of https://github.com/tockins/realize
This commit is contained in:
commit
33ecc2662f
|
@ -158,7 +158,7 @@ For more examples check: [Realize Examples](https://github.com/tockins/realize-e
|
|||
- -w
|
||||
test:
|
||||
status: true
|
||||
method: gb test // support differents build tool
|
||||
method: gb test // support different build tools
|
||||
generate:
|
||||
status: true
|
||||
install:
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue