fix failing to build user packages named "embed"

pull/282/head
Andrew LeFevre 4 years ago
parent 5d74ab07f5
commit 24518ceead

@ -174,7 +174,7 @@ type listedPackage struct {
} }
func (p *listedPackage) obfuscatedImportPath() string { func (p *listedPackage) obfuscatedImportPath() string {
if p.Name == "main" || p.Name == "embed" || !p.Private { if p.Name == "main" || p.ImportPath == "embed" || !p.Private {
return p.ImportPath return p.ImportPath
} }
newPath := hashWith(p.GarbleActionID, p.ImportPath) newPath := hashWith(p.GarbleActionID, p.ImportPath)

Loading…
Cancel
Save