Files
warewulf/internal/app/wwctl/container/exec/child/non-Linux.go
2020-12-06 09:39:48 -08:00

15 lines
270 B
Go

// +build !linux
package child
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
}