Skip to content

Commit

Permalink
Handle non-string parameters like booleanParam
Browse files Browse the repository at this point in the history
Jenkins supports more than strings here; before this change,
non-stringParam values came back as empty strings (since they fail the
cast back to string).
  • Loading branch information
novas0x2a committed Jul 7, 2020
1 parent 65ee8c9 commit ce4f598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type Build struct {

type parameter struct {
Name string
Value string
Value interface{}
}

type branch struct {
Expand Down

0 comments on commit ce4f598

Please sign in to comment.