mirror of
https://github.com/ko-build/ko.git
synced 2024-12-12 08:54:09 +02:00
6f9fb7f753
* Move commands to pkg/commands and split into files.
62 lines
1.8 KiB
Go
62 lines
1.8 KiB
Go
// Copyright 2018 Google LLC All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package commands
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"log"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
// runCmd is suitable for use with cobra.Command's Run field.
|
|
type runCmd func(*cobra.Command, []string)
|
|
|
|
// passthru returns a runCmd that simply passes our CLI arguments
|
|
// through to a binary named command.
|
|
func passthru(command string) runCmd {
|
|
return func(_ *cobra.Command, _ []string) {
|
|
// Start building a command line invocation by passing
|
|
// through our arguments to command's CLI.
|
|
cmd := exec.Command(command, os.Args[1:]...)
|
|
|
|
// Pass through our environment
|
|
cmd.Env = os.Environ()
|
|
// Pass through our stdfoo
|
|
cmd.Stderr = os.Stderr
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stdin = os.Stdin
|
|
|
|
// Run it.
|
|
if err := cmd.Run(); err != nil {
|
|
log.Fatalf("error executing %q command with args: %v; %v", command, os.Args[1:], err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// addDelete augments our CLI surface with publish.
|
|
func addDelete(topLevel *cobra.Command) {
|
|
topLevel.AddCommand(&cobra.Command{
|
|
Use: "delete",
|
|
Short: `See "kubectl help delete" for detailed usage.`,
|
|
Run: passthru("kubectl"),
|
|
// We ignore unknown flags to avoid importing everything Go exposes
|
|
// from our commands.
|
|
FParseErrWhitelist: cobra.FParseErrWhitelist{
|
|
UnknownFlags: true,
|
|
},
|
|
})
|
|
}
|