Skip to content

Commit 7a4a910

Browse files
authored
Adding missing comma to first example
The first example script in the instructions does not work. The error {"error":"Failed to parse body as JSON"} is returned from curl. There is a missing comma in the JSON expression.
1 parent 859062b commit 7a4a910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

user/triggering-builds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Trigger Travis CI builds using the API V3 by sending a POST request to `/repo/{s
2323
```bash
2424
body='{
2525
"request": {
26-
"branch":"master"
26+
"branch":"master",
2727
"sha":"bf944c952724dd2f00ff0c466a5e217d10f73bea"
2828
}}'
2929

0 commit comments

Comments
 (0)