mirror of
https://github.com/burrowers/garble.git
synced 2025-12-24 12:58:05 +08:00
16 lines
263 B
Plaintext
16 lines
263 B
Plaintext
env GOPRIVATE=match-absolutely/nothing
|
|
! garble build -o bin ./standalone
|
|
stderr 'does not match any packages'
|
|
|
|
[short] stop
|
|
|
|
env GOPRIVATE='*'
|
|
garble build -o bin ./standalone
|
|
|
|
-- go.mod --
|
|
module test/main
|
|
-- standalone/main.go --
|
|
package main
|
|
|
|
func main() {}
|