diff options
| author | Himanshu Chauhan <[email protected]> | 2022-12-09 11:43:35 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2022-12-10 22:00:27 +0530 |
| commit | 506928a1be9952abc52f05c0c661338aa1d66f6d (patch) | |
| tree | 68b242cf50be2d7336a95c217ff0377aced2d826 /scripts/create-binary-archive.sh | |
| parent | cb568b9b294d5b20f7dd416e89b61c8bf0fa375d (diff) | |
scripts: use env to invoke bash
Not all systems have bash at a fixed location like /bin/bash.
FreeBSD, for example, would typically have it at /usr/local/bin/bash.
When building OpenSBI on freebsd system, the build breaks.
Its advisable to use: #!/usr/bin/env bash
Signed-off-by: Himanshu Chauhan <[email protected]>
Reviewed-by: Xiang W <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Diffstat (limited to 'scripts/create-binary-archive.sh')
| -rwxr-xr-x | scripts/create-binary-archive.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create-binary-archive.sh b/scripts/create-binary-archive.sh index 4dda7b4b..9d56f2f4 100755 --- a/scripts/create-binary-archive.sh +++ b/scripts/create-binary-archive.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash function usage() { |
