Skip to content

Commit 3fbfc41

Browse files
authored
Merge pull request #18974 from tamasvajk/tamasvajk/rename-ccr-suite-quality
Rename the CCR query suite to code-quality
2 parents c8a1ad6 + b5684fd commit 3fbfc41

File tree

11 files changed

+4
-4
lines changed

11 files changed

+4
-4
lines changed
File renamed without changes.

misc/scripts/generate-code-scanning-query-list.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
# Define which languages and query packs to consider
3333
languages = [ "actions", "cpp", "csharp", "go", "java", "javascript", "python", "ruby", "swift" ]
34-
packs = [ "code-scanning", "security-and-quality", "security-extended", "security-experimental", "ccr"]
34+
packs = [ "code-scanning", "security-and-quality", "security-extended", "security-experimental", "code-quality"]
3535

3636
class CodeQL:
3737
def __init__(self):
@@ -183,9 +183,9 @@ def subprocess_run(cmd):
183183
else:
184184
sys.exit("You can use '--ignore-missing-query-packs' to ignore this error")
185185

186-
# Exception for the CCR suites, which might be empty, but must be resolvable.
187-
if pack == 'ccr' and queries_subp == '':
188-
print(f'Warning: skipping empty suite ccr', file=sys.stderr)
186+
# Exception for the code-quality suites, which might be empty, but must be resolvable.
187+
if pack == 'code-quality' and queries_subp == '':
188+
print(f'Warning: skipping empty suite code-quality', file=sys.stderr)
189189
continue
190190

191191
# Investigate metadata for every query by using 'codeql resolve metadata'

0 commit comments

Comments
 (0)