Files
warewulf/internal/app/wwctl/container/exec/non-linux.go
2021-08-21 08:04:47 -07:00

16 lines
287 B
Go

//go:build !linux
// +build !linux
package exec
import (
"github.com/hpcng/warewulf/internal/pkg/wwlog"
"github.com/spf13/cobra"
)
func CobraRunE(cmd *cobra.Command, args []string) error {
wwlog.Printf(wwlog.ERROR, "This command does not work on non-Linux hosts\n")
return nil
}