Files
codeql/.devcontainer/swift/user_bashrc.sh
2022-06-22 09:59:12 +02:00

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