We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f9b73b commit f57610bCopy full SHA for f57610b
install/preview/leeway.Dockerfile
@@ -18,4 +18,4 @@ COPY install-preview-prettylog--app/prettylog /prettylog
18
19
COPY entrypoint.sh /entrypoint.sh
20
21
-ENTRYPOINT [ "/tini", "--", "/entrypoint.sh" ]
+ENTRYPOINT ["/entrypoint.sh" ]
install/preview/prettylog/main.go
@@ -43,7 +43,6 @@ func confirm() bool {
43
fmt.Print("Continue? [y|n]: ")
44
scanner.Scan()
45
input := strings.ToLower(scanner.Text())
46
- fmt.Println(input)
47
// yes by default
48
if input == "y" || input == "yes" || input == "" {
49
return true
0 commit comments