Merge b3122e167a into merged_master (Bitcoin PR bitcoin/bitcoin#23543)

This commit is contained in:
Byron Hambly 2023-06-20 13:21:57 +00:00
commit ad73b28c8f

View file

@ -17,6 +17,11 @@ if test -z "$1"; then
exit 1
fi
if ! sed --help 2>&1 | 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)