You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
693 B
Plaintext
32 lines
693 B
Plaintext
env GOPRIVATE=match-absolutely/nothing
|
|
! garble build -o=out ./standalone
|
|
stderr '^GOPRIVATE="match-absolutely/nothing" does not match any packages to be built$'
|
|
|
|
env GOPRIVATE=test/main/imported
|
|
! garble build ./importer
|
|
stderr '^public package "test/main/importer" can''t depend on obfuscated package "test/main/imported" \(matched via GOPRIVATE="test/main/imported"\)$'
|
|
|
|
[short] stop
|
|
|
|
env GOPRIVATE='*'
|
|
garble build -o=out ./standalone
|
|
|
|
-- go.mod --
|
|
module test/main
|
|
|
|
go 1.15
|
|
-- standalone/main.go --
|
|
package main
|
|
|
|
func main() {}
|
|
-- importer/importer.go --
|
|
package importer
|
|
|
|
import "test/main/imported"
|
|
|
|
var _ = imported.Name
|
|
-- imported/imported.go --
|
|
package imported
|
|
|
|
var Name = "value"
|