Skip to content

Commit c0f13fd

Browse files
committed
Enable installation of pre-release packs
Since 2.11.3 pre-release packs have been ignored CodeQL when installing packs. We re-enable this since we use pre-release packs internally (e.g. in the common packs).
1 parent 77d571a commit c0f13fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/install-packs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
for pack in packs:
1919
pack_path = os.path.join(root, pack)
2020
# Run `codeql pack install` to install dependencies.
21-
command = [args.codeql, 'pack', 'install', '--mode', args.mode, pack_path]
21+
command = [args.codeql, 'pack', 'install', '--alow-prerelease', '--mode', args.mode, pack_path]
2222
print(f'Running `{" ".join(command)}`')
2323
subprocess.check_call(command)

0 commit comments

Comments
 (0)