mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
419 B
Bash
Executable File
15 lines
419 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ "$CODEQL_PLATFORM" != "linux64" ] && [ "$CODEQL_PLATFORM" != "osx64" ] ; then
|
|
echo "Automatic build detection for $CODEQL_PLATFORM is not implemented."
|
|
exit 1
|
|
fi
|
|
|
|
# The autobuilder is already being traced
|
|
CODEQL_AUTOBUILDER_CSHARP_NO_INDEXING="true"
|
|
export CODEQL_AUTOBUILDER_CSHARP_NO_INDEXING
|
|
|
|
"$CODEQL_EXTRACTOR_CSHARP_ROOT/tools/$CODEQL_PLATFORM/Semmle.Autobuild.CSharp" || exit $?
|