More tuning and working on vacuum support

noticed a couple of stange things with vacuum

Signed-off-by: quobix <dave@quobix.com>
This commit is contained in:
quobix
2023-11-22 18:28:33 -05:00
parent a8ff2f5dee
commit 95338f2536
2 changed files with 6 additions and 4 deletions

View File

@@ -100,10 +100,12 @@ func LocateRefNodeWithContext(ctx context.Context, root *yaml.Node, idx *index.S
if strings.HasPrefix(specPath, "http") {
u, _ := url.Parse(specPath)
p := ""
if u.Path != "" {
if u.Path != "" && explodedRefValue[0] != "" {
p = filepath.Dir(u.Path)
}
u.Path = filepath.Join(p, explodedRefValue[0])
if p != "" && explodedRefValue[0] != "" {
u.Path = filepath.Join(p, explodedRefValue[0])
}
u.Fragment = ""
rv = fmt.Sprintf("%s#%s", u.String(), explodedRefValue[1])