mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
6 lines
248 B
Bash
6 lines
248 B
Bash
# have the codeql binary installed by vscode automatically in PATH
|
|
bin=$(ls $HOME/.vscode-remote/data/User/globalStorage/github.vscode-codeql/*/codeql/codeql -t 2>/dev/null | head -1)
|
|
if [[ -n $bin ]]; then
|
|
export PATH=$PATH:$(dirname "$bin")
|
|
fi
|