Initialize module and dependencies
This commit is contained in:
34
vendor/golang.org/x/vuln/cmd/govulncheck/main.go
generated
vendored
Normal file
34
vendor/golang.org/x/vuln/cmd/govulncheck/main.go
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// Copyright 2022 The Go Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"golang.org/x/telemetry"
|
||||
"golang.org/x/vuln/scan"
|
||||
)
|
||||
|
||||
func main() {
|
||||
telemetry.Start(telemetry.Config{ReportCrashes: true})
|
||||
|
||||
ctx := context.Background()
|
||||
|
||||
cmd := scan.Command(ctx, os.Args[1:]...)
|
||||
err := cmd.Start()
|
||||
if err == nil {
|
||||
err = cmd.Wait()
|
||||
}
|
||||
switch err := err.(type) {
|
||||
case nil:
|
||||
case interface{ ExitCode() int }:
|
||||
os.Exit(err.ExitCode())
|
||||
default:
|
||||
fmt.Fprintln(os.Stderr, err)
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user