
Bash can be in both /usr/bin/bash or /bin/bash (or elsewhere!) depending on the distro, so let's be generic using env to figure it out. This comes from a packaging lintian error we get: E: mutter-16-tests: wrong-path-for-interpreter /usr/bin/bash != /bin/bash [usr/share/mutter-16/tests/socket-launch.sh] Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4288>
5 lines
52 B
Bash
Executable File
5 lines
52 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export LISTEN_PID=$$
|
|
exec "$@"
|