From ede2ae11e905499752887bc0c24202f0af7fbb18 Mon Sep 17 00:00:00 2001 From: Dave Bartolomeo Date: Fri, 27 Aug 2021 14:17:48 -0400 Subject: [PATCH] Fix incompatibility with release CLI This fixes #6563, in which a customer reports being unable to run a query suite despite following the "Getting Started with the CodeQL CLI" instructions. The problem is that the released versions of the CodeQL CLI incorrectly disallow any reference to a library pack from within a .qls file. This is a CLI bug that will be fixed in the next CLI release, but since our policy is to make `github/codeql`'s `main` branch compatible with the latest released CLI, we need to work around this for now by pretending `codeql/suite-helpers` is a query pack. --- misc/suite-helpers/qlpack.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/misc/suite-helpers/qlpack.yml b/misc/suite-helpers/qlpack.yml index ca0a6732f5a..3ac4457ebe5 100644 --- a/misc/suite-helpers/qlpack.yml +++ b/misc/suite-helpers/qlpack.yml @@ -1,3 +1,2 @@ name: codeql/suite-helpers version: 0.0.2 -library: true