mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
script: preventing non-compatible sed binary.
This commit is contained in:
parent
fe03f7a37f
commit
30df5c3dd4
1 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,11 @@ if test -z "$1"; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if ! sed --help | grep -q 'GNU'; then
|
||||
echo "Error: the installed sed package is not compatible. Please make sure you have GNU sed installed in your system.";
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
RET=0
|
||||
PREV_BRANCH=$(git name-rev --name-only HEAD)
|
||||
PREV_HEAD=$(git rev-parse HEAD)
|
||||
|
|
Loading…
Add table
Reference in a new issue