Skip to content

Commit

Permalink
Remove unneeded print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamingregory committed Feb 8, 2019
1 parent 6b4a8cf commit 1a79b60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker.go
Expand Up @@ -52,7 +52,7 @@ func ExecLogin(registry, username, password string) error {

// AirflowCommand is the main method of interaction with Airflow
func AirflowCommand(id string, airflowCommand string) string {
fmt.Println(airflowCommand)

cmd := exec.Command("docker", "exec", "-it", id, "bash", "-c", airflowCommand)
cmd.Stdin = os.Stdin
cmd.Stderr = os.Stderr
Expand Down

0 comments on commit 1a79b60

Please sign in to comment.