Merge pull request #1456 from roycaihw/sed-check

Add OS X sed check to update-submodule.sh
This commit is contained in:
Kubernetes Prow Robot 2021-05-10 10:01:35 -07:00 committed by GitHub
commit 02c4f7a663
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,6 +31,22 @@ set -o errexit
set -o nounset
set -o pipefail
# OS X sed doesn't support "--version". This way we can tell if OS X sed is
# used.
if ! sed --version &>/dev/null; then
# OS X sed and GNU sed aren't compatible with backup flag "-i". Namely
# sed -i ... - does not work on OS X
# sed -i'' ... - does not work on certain OS X versions
# sed -i '' ... - does not work on GNU
echo ">>> OS X sed detected, which may be incompatible with this script. Please install and use GNU sed instead:
$ brew install gnu-sed
$ brew info gnu-sed
# Find the path to the installed gnu-sed and add it to your PATH. The default
# is:
# PATH=\"/Users/\$USER/homebrew/opt/gnu-sed/libexec/gnubin:\$PATH\""
exit 1
fi
repo_root="$(git rev-parse --show-toplevel)"
declare -r repo_root
cd "${repo_root}"