We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aaeb33e + 7da2831 commit f921345Copy full SHA for f921345
1 file changed
builder/src/yaml2json-procfile.go
@@ -10,7 +10,7 @@ import (
10
11
func main() {
12
if fi, _ := os.Stdin.Stat(); fi.Mode()&os.ModeNamedPipe == 0 {
13
- fmt.Println("this app only works using the stdout of another process")
+ fmt.Println("this app requires the stdout of another process")
14
os.Exit(1)
15
}
16
@@ -24,7 +24,7 @@ func main() {
24
procfile, err := builder.YamlToJSON(bytes)
25
26
if err != nil {
27
- fmt.Println("the procfile does not contains a valid yaml structure")
+ fmt.Println("the Procfile is not valid yaml")
28
29
30
0 commit comments