Skip to content

Commit

Permalink
main: POSIX compliant shebang for locating bash.
Browse files Browse the repository at this point in the history
Improve portability of run_tests.sh and harness.sh by using the POSIX
compliant shebang for locating bash.
  • Loading branch information
jholdstock committed Sep 19, 2023
1 parent c7ebe28 commit 57864ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions harness.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Copyright (c) 2020-2021 The Decred developers
# Copyright (c) 2020-2023 The Decred developers
# Use of this source code is governed by an ISC
# license that can be found in the LICENSE file.
#
Expand Down
4 changes: 2 additions & 2 deletions run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Copyright (c) 2020-2022 The Decred developers
# Copyright (c) 2020-2023 The Decred developers
# Use of this source code is governed by an ISC
# license that can be found in the LICENSE file.
#
Expand Down

0 comments on commit 57864ae

Please sign in to comment.