Files
warewulf/internal/app/wwctl/container/exec/child/non-Linux.go
Gregory Kurtzer b60cacbd0f Revert "removed unused container child"
This reverts commit 30bc445a89.
2022-03-02 19:53:10 -08:00

16 lines
288 B
Go

//go:build !linux
// +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
}