Skip to content

Commit 7eccaf2

Browse files
committed
fixup! Implement Push Publisher
1 parent b8614c0 commit 7eccaf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/publishers/push.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ export const runPushPublisher = async (): Promise<number> => {
8282
*/
8383
const canExecute = (task: Task): boolean => {
8484
return (
85-
task.action.inProgress == null &&
85+
task.action.inProgress != null &&
8686
task.action.type === 'push' &&
87-
task.action.repeat == null &&
87+
task.action.repeat != null &&
8888
task.action.inProgress === false
8989
)
9090
}

0 commit comments

Comments
 (0)