Skip to content

Commit 5784c40

Browse files
authored
Fix incorrect command in release doc (#176)
The command in the release doc is incorrect. It will lose the double quotes for the version.
1 parent e9e0ccf commit 5784c40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ For patch releases (`X.Y.Z`), you need to reuse the existing branch:
7171

7272
```bash
7373
git checkout branch-X.Y
74-
sed -i 's/__version__.*/__version__=X.Y.Z/' pulsar/__about__.py
74+
perl -pi -e "s/__version__.*/__version__=\"X.Y.Z\"/" pulsar/__about__.py
7575
git add pulsar/__about__.py
7676
git commit -m "Bump version to X.Y.Z"
7777
git push origin branch-X.Y

0 commit comments

Comments
 (0)