Skip to content

Commit bd9ba7d

Browse files
committed
Fix CLI new lines
(cherry picked from commit 004d551)
1 parent 2e936ae commit bd9ba7d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

cli/cmd/lib_manager.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ package cmd
1919
import (
2020
"bytes"
2121
"context"
22+
"fmt"
2223
"io"
2324
"os"
2425
"os/signal"
@@ -103,6 +104,7 @@ func pullManager(clusterConfig *clusterconfig.ClusterConfig) error {
103104

104105
termFd, isTerm := term.GetFdInfo(os.Stderr)
105106
jsonmessage.DisplayJSONMessagesStream(pullOutput, os.Stderr, termFd, isTerm, nil)
107+
fmt.Println()
106108

107109
return nil
108110
}

manager/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function ensure_eks() {
3232
exit 1
3333
fi
3434

35-
echo -e "\n○ Spinning up the cluster ... (this will take about 15 minutes)\n"
35+
echo -e "○ Spinning up the cluster ... (this will take about 15 minutes)\n"
3636
envsubst < eks.yaml | eksctl create cluster -f -
3737
echo -e "\n✓ Spun up the cluster"
3838
return

0 commit comments

Comments
 (0)