Skip to content

Commit caa3125

Browse files
committed
Fix name of allow-prerelease flag.
1 parent c0f13fd commit caa3125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/install-packs.py

+1-1
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', '--alow-prerelease', '--mode', args.mode, pack_path]
21+
command = [args.codeql, 'pack', 'install', '--allow-prerelease', '--mode', args.mode, pack_path]
2222
print(f'Running `{" ".join(command)}`')
2323
subprocess.check_call(command)

0 commit comments

Comments
 (0)