mirror of
https://github.com/github/codeql.git
synced 2025-12-16 00:33:11 +01:00
* The ungram file is now taken from the rust-analyzer dependencies pulled in by bazel * the grammar parsing code is not published, so it must be taken directly from rust-analyzer code. That part should be less prone to be updated than the ungram file, so it does not necessarily need to be in sync with the rust-analyzer version is used elsewhere. * both need some patches. The former is patched during build, the latter during loading in `MODULE.bazel`.
8 lines
189 B
Bash
Executable File
8 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
WORKSPACE_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )/.." &> /dev/null && pwd )
|
|
|
|
exec "$WORKSPACE_DIR/misc/bazel/3rdparty/update_tree_sitter_extractors_deps.sh"
|