diff options
| author | Mark Wielaard <[email protected]> | 2024-03-27 15:25:16 +0100 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2024-03-27 15:29:20 +0100 |
| commit | 3f956f8f8609f508ead2becc594c2338681cc6d0 (patch) | |
| tree | 63e783b2dfd00acaa8801f7e33609f8c4b6aaecd /tests | |
| parent | 0ba2e4aa9945019a8c6db95d27d142b660a63a79 (diff) | |
tests: Use bash for run-debuginfod-client-profile.sh
The test uses set -o pipefail which is a bashism and so the test fails
on systems where /bin/sh isn't bash.
* tests/run-debuginfod-client-profile.sh: Use bash.
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/run-debuginfod-client-profile.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-debuginfod-client-profile.sh b/tests/run-debuginfod-client-profile.sh index 7435ced8..141588d3 100755 --- a/tests/run-debuginfod-client-profile.sh +++ b/tests/run-debuginfod-client-profile.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#! /usr/bin/env bash # Copyright (C) 2024 Mark J. Wielaard # This file is part of elfutils. # |
