Fix grep warning in scripts/sync-version (#2807)
Extended regular expressions (enabled via flag -E) don't support non-capturing groups under POSIX. Get rid of them as they don't add any value since we don't handle the captured groups in the first place.
This commit is contained in:
parent
7ae2e6375a
commit
99f0d8734d
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
SEMVER_REGEX="([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?"
|
||||
SEMVER_REGEX="([0-9]+)\.([0-9]+)\.([0-9]+)(-([0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*))?(\+[0-9A-Za-z-]+)?"
|
||||
CHANGELOG_VERSION=$(grep -o -E $SEMVER_REGEX docs/release-notes.md | head -1)
|
||||
VERSION=$(grep -o -E $SEMVER_REGEX uvicorn/__init__.py | head -1)
|
||||
if [ "$CHANGELOG_VERSION" != "$VERSION" ]; then
|
||||
|
||||
Loading…
Reference in New Issue
Block a user