don't obfuscate the "embed" import path

Updates #263
pull/271/head
lu4p 4 years ago committed by Daniel Martí
parent def9351b25
commit 810bdf448e

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

@ -0,0 +1,31 @@
env GOPRIVATE=*
garble build
exec ./main
cmp stdout main.stdout
-- go.mod --
module test/main
go 1.16
-- main.go --
package main
import (
_ "embed"
"fmt"
)
//go:embed test.txt
var x string
func main() {
fmt.Printf("%q\n", x)
}
-- test.txt --
test content
-- main.stdout --
"test content\n"
Loading…
Cancel
Save