Skip to content

Commit

Permalink
Fix eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Itai Gendler authored and Itai Gendler committed Mar 2, 2018
1 parent c1fcb19 commit e8120eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/logic/api/pipeline2.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const runPipelineByName = async (name, data) => {
if (_.isString(data.contexts)) {
contexts = [data.contexts];
}
await Promise.map(data.contexts, async (name) => {
await Promise.map(data.contexts, async (name) => { // eslint-disable-line
try {
await getContextByName(name);
contexts.push({
Expand Down

0 comments on commit e8120eb

Please sign in to comment.