From 0f1ef6125a29305be24461e210aaff41fb77eb41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Arboleda?= Date: Sat, 28 Jan 2023 17:18:38 -0500 Subject: [PATCH] doc: correct the `sed` command for macOS in release process docs --- doc/contributing/releases.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/contributing/releases.md b/doc/contributing/releases.md index c2f26eebe884f3..5c3d372aaed5fb 100644 --- a/doc/contributing/releases.md +++ b/doc/contributing/releases.md @@ -428,6 +428,12 @@ and substitute this node version with sed -i "s/REPLACEME/$VERSION/g" doc/api/*.md ``` +For macOS requires the extension to be specified. + +```bash +sed -i "" "s/REPLACEME/$VERSION/g" doc/api/*.md +``` + or ```console