mirror of
https://github.com/mirror/wget.git
synced 2025-01-14 06:10:13 +08:00
10 lines
190 B
Bash
10 lines
190 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
WRAPPER=""
|
||
|
|
||
|
if [ -n "$VALGRIND_TESTS" ]; then
|
||
|
WRAPPER="valgrind --error-exitcode=301 --leak-check=yes --show-reachable=yes --track-origins=yes"
|
||
|
fi
|
||
|
|
||
|
exec $WRAPPER "$@"
|