mirror of
https://github.com/github/codeql.git
synced 2026-05-14 19:29:28 +02:00
13 lines
285 B
Bash
Executable File
13 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
"${CODEQL_DIST}/codeql" database index-files \
|
|
--prune="**/*.testproj" \
|
|
--include-extension=.swift \
|
|
--include-extension=.swiftinterface \
|
|
--size-limit=5m \
|
|
--language=unified \
|
|
--working-dir=.\
|
|
"$CODEQL_EXTRACTOR_UNIFIED_WIP_DATABASE"
|