github.com/tiagovtristao/plz@v13.4.0+incompatible/src/utils/stub.go (about) 1 // +build bootstrap 2 3 package utils 4 5 // InitConfig is a stub used during initial bootstrap. 6 func InitConfig(dir string, bazelCompatibility bool) { 7 log.Fatalf("Not supported during initial bootstrap.\n") 8 } 9 10 // InitConfigFile is a stub used during initial bootstrap. 11 func InitConfigFile(filename string, options map[string]string) { 12 } 13 14 // PrintCompletionScript is a stub used during initial bootstrap. 15 func PrintCompletionScript() { 16 log.Fatalf("Not supported during initial bootstrap.\n") 17 }