mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
12 lines
397 B
Bash
Executable File
12 lines
397 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
WORKSPACE_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )/../../.." &> /dev/null && pwd )
|
|
|
|
cd "$WORKSPACE_DIR"
|
|
time bazel run //misc/bazel/3rdparty:vendor_py_deps
|
|
# no idea why this is necessary, see https://github.com/bazelbuild/rules_rust/issues/3255
|
|
python3 "$WORKSPACE_DIR/misc/bazel/3rdparty/patch_defs.py" misc/bazel/3rdparty/py_deps/defs.bzl
|
|
bazel mod tidy
|