Skip to content

Commit e8120eb

Browse files
Itai GendlerItai Gendler
authored andcommitted
Fix eslint issue
1 parent c1fcb19 commit e8120eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/logic/api/pipeline2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const runPipelineByName = async (name, data) => {
123123
if (_.isString(data.contexts)) {
124124
contexts = [data.contexts];
125125
}
126-
await Promise.map(data.contexts, async (name) => {
126+
await Promise.map(data.contexts, async (name) => { // eslint-disable-line
127127
try {
128128
await getContextByName(name);
129129
contexts.push({

0 commit comments

Comments
 (0)