mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
9 lines
180 B
Bash
9 lines
180 B
Bash
#!/system/bin/sh
|
|
export renderdoc__replay__marker=1
|
|
# chain to asan's wrap if needed, now that we exported the env var
|
|
if [ -f asan.sh ]; then
|
|
./asan.sh "$@"
|
|
else
|
|
exec "$@"
|
|
fi
|