mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 06:32:17 +08:00
feat(plugins): made it possible to have relative plugin template urls
This commit is contained in:
@ -102,6 +102,10 @@ func (scanner *PluginScanner) walker(currentPath string, f os.FileInfo, err erro
|
||||
return err
|
||||
}
|
||||
|
||||
if f.Name() == "node_modules" {
|
||||
return util.WalkSkipDir
|
||||
}
|
||||
|
||||
if f.IsDir() {
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user