mirror of
https://github.com/github/codeql.git
synced 2026-05-01 03:35:13 +02:00
10 lines
148 B
Go
10 lines
148 B
Go
package util
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func IsVendorDirExtractionEnabled() bool {
|
|
return os.Getenv("CODEQL_EXTRACTOR_GO_EXTRACT_VENDOR_DIRS") == "true"
|
|
}
|