mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
10 lines
170 B
Bash
Executable File
10 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$(uname)" == Darwin ]]; then
|
|
export DYLD_LIBRARY_PATH=$(dirname "$0")
|
|
else
|
|
export LD_LIBRARY_PATH=$(dirname "$0")
|
|
fi
|
|
|
|
exec -a "$0" "$0.real" "$@"
|