Skip to content

Commit 0008d03

Browse files
author
Oleg Sucharevich
authored
add newline to fmt (#147)
1 parent a452b34 commit 0008d03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "venona",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44

55
"description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline",
66
"main": "index.js",

venonactl/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1.3.3
1+
1.3.4
22

venonactl/cmd/cmdutils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ func isUsingDefaultStorageClass(sc string) bool {
128128

129129
func dieOnError(err error) {
130130
if err != nil {
131-
fmt.Printf("Error: %s", err.Error())
131+
fmt.Printf("Error: %s\n", err.Error())
132132
os.Exit(1)
133133
}
134134
}

0 commit comments

Comments
 (0)