Skip to content

Commit 6e8c206

Browse files
committed
fix broken windows compilation
1 parent b1d084f commit 6e8c206

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

cmd/creator.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ import (
55
"github.com/AlecAivazis/survey/v2"
66
dc "github.com/dockware/dockware-cli/dockercompose"
77
"github.com/spf13/cobra"
8-
"golang.org/x/term"
98
"log"
109
"os"
1110
"os/exec"
1211
"strings"
13-
"syscall"
1412
)
1513

1614
type Answers struct {
@@ -30,10 +28,6 @@ var creatorCmd = &cobra.Command{
3028
Short: "Use the interactive dockware creator to get what you need for today's task",
3129
Long: "",
3230
Run: func(cmd *cobra.Command, args []string) {
33-
if !term.IsTerminal(syscall.Stdin) {
34-
log.Fatal("interactive terminal required")
35-
}
36-
3731
a := &Answers{}
3832
a.getDevIntent()
3933

0 commit comments

Comments
 (0)