Skip to content

Commit

Permalink
Remove extra dot
Browse files Browse the repository at this point in the history
  • Loading branch information
angrycub committed Oct 24, 2023
1 parent ac31c02 commit d8edcf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/variable/parser/parser_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ func (p *ParserV2) parseVariableImpl(name, rawVal string, tgt variables.PackIDKe
// TODO: This is another part that needs to be smart about parsing into the
// names so we could potentially set a value inside of an object.
varPID = p.cfg.ParentPack.ID().Join(
pack.ID("." + strings.Join(splitName[0:len(splitName)-1], ".")),
pack.ID(strings.Join(splitName[0:len(splitName)-1], ".")),
)
varVID = variables.ID(splitName[len(splitName)-1])
} else {
Expand Down

0 comments on commit d8edcf9

Please sign in to comment.