Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 6c423b0

Browse files
committed
Correct bad boolean check
1 parent 1ea01cf commit 6c423b0

File tree

1 file changed

+1
-1
lines changed
  • codeql-learninglab-check/package/src

1 file changed

+1
-1
lines changed

codeql-learninglab-check/package/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function isConfig(config: any): config is Config {
114114
const queriesChanged = new Set<string>();
115115
let unableToGetChangedQueries = false;
116116

117-
if (RUN_ALL) {
117+
if (!RUN_ALL) {
118118

119119
/*
120120
* There are a few different ways in which we may determine which queries

0 commit comments

Comments
 (0)