Skip to content

Commit

Permalink
fix(titus): URL decode params to allow expressions in Bake package na…
Browse files Browse the repository at this point in the history
…me (#3604)

- This ensures to url decode the parameters on the repo url
  • Loading branch information
jeyrschabu committed May 5, 2017
1 parent 4f129e9 commit 5e974c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ module.exports = angular.module('spinnaker.core.pipeline.stage.titus.titusBakeSt

let buildParams = $.param(stage.repository.buildParameters);
if (buildParams.length > 0) {
url += '&' + buildParams;
url += '&' + decodeURIComponent(buildParams);
}
stage.package = url;
};
Expand Down

0 comments on commit 5e974c6

Please sign in to comment.