Skip to content

Commit 16fffe9

Browse files
authored
chore: writing to stdout instead of stderr (#9)
1 parent d886fb3 commit 16fffe9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package main
22

33
import (
44
"flag"
5+
"fmt"
56
"log"
67

78
"github.com/samsarahq/github-app-credential-helper/common"
@@ -45,5 +46,5 @@ func get(secretArn *string, role *string, tokenCommand *string) {
4546
}
4647

4748
// The output needs to be pristine, so we print here at the end only if we are sure everything is working.
48-
print(output)
49+
fmt.Println(output)
4950
}

0 commit comments

Comments
 (0)