| Index: build_scheduler/go/parse_task_cfg/main.go
|
| diff --git a/build_scheduler/go/parse_task_cfg/main.go b/build_scheduler/go/parse_task_cfg/main.go
|
| deleted file mode 100644
|
| index 248ceed5a37073f8bda29b996f25ed0e796df874..0000000000000000000000000000000000000000
|
| --- a/build_scheduler/go/parse_task_cfg/main.go
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -package main
|
| -
|
| -/*
|
| - Convenience program for verification of task config files.
|
| -*/
|
| -
|
| -import (
|
| - "flag"
|
| - "io/ioutil"
|
| -
|
| - "github.com/skia-dev/glog"
|
| - "go.skia.org/infra/build_scheduler/go/task_scheduler"
|
| - "go.skia.org/infra/go/common"
|
| -)
|
| -
|
| -var (
|
| - cfgFile = flag.String("cfg_file", "", "Config file to parse.")
|
| -)
|
| -
|
| -func main() {
|
| - common.Init()
|
| - defer common.LogPanic()
|
| -
|
| - b, err := ioutil.ReadFile(*cfgFile)
|
| - if err != nil {
|
| - glog.Fatal(err)
|
| - }
|
| - if _, err := task_scheduler.ParseTasksCfg(string(b)); err != nil {
|
| - glog.Fatal(err)
|
| - }
|
| -}
|
|
|