mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
172 B
Bash
Executable File
9 lines
172 B
Bash
Executable File
#!/bin/bash -p
|
|
|
|
echo "Fake which called with arguments: $@"
|
|
|
|
case $1 in
|
|
python) exit 1;;
|
|
python3) exit 1;;
|
|
*) command /usr/bin/which -- "$1";;
|
|
esac |