Skip to content

Commit

Permalink
selftests/signedoff-check.sh: run under BASH
Browse files Browse the repository at this point in the history
The redirection on line 7 is not supported on minimalistic shells such
as DASH.  Let's force the use of BASH instead.

Signed-off-by: Cleber Rosa <[email protected]>
  • Loading branch information
clebergnu committed Jun 9, 2023
1 parent 348d9d2 commit 471ece1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selftests/signedoff-check.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/bash -e

echo "** Running signedoff-check..."
if [ -z "$COMMIT_COUNT" ]; then
Expand Down

0 comments on commit 471ece1

Please sign in to comment.