Skip to content

Commit cd4d721

Browse files
committed
fix: drop extra punctuationn
The server already responds with punctuation.
1 parent 21e434d commit cd4d721

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ mutation AddApp($name: String!) {
142142
}
143143

144144
if respData.AddApp.Error != "" {
145-
fmt.Printf(" ! %v!\n", respData.AddApp.Error)
145+
fmt.Printf(" ! %v\n", respData.AddApp.Error)
146146
} else {
147147
fmt.Printf("====> %v created!\n", respData.AddApp.App.Name)
148148
}
@@ -180,7 +180,7 @@ mutation DeleteApp($name: String!) {
180180
}
181181

182182
if respData.DeleteApp.Error != "" {
183-
fmt.Printf(" ! %v!\n", respData.DeleteApp.Error)
183+
fmt.Printf(" ! %v\n", respData.DeleteApp.Error)
184184
} else {
185185
fmt.Printf("====> %v deleted!\n", name)
186186
}

0 commit comments

Comments
 (0)