Skip to content

Commit ad645e4

Browse files
Modified release instructions for MacOS users (#5034)
* modified release instructions for macos users Signed-off-by: laxmikantbpandhare <[email protected]> * modified Signed-off-by: laxmikantbpandhare <[email protected]> * modified Signed-off-by: laxmikantbpandhare <[email protected]> * modified according comments Signed-off-by: laxmikantbpandhare <[email protected]> * modified according comments Signed-off-by: laxmikantbpandhare <[email protected]>
1 parent 95ed52a commit ad645e4

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

website/content/en/docs/contribution-guidelines/releasing.md

100644100755
+19-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Table of contents:
1616

1717
## Prerequisites
1818

19-
- [`git`](https://git-scm.com/downloads)
20-
- [`make`](https://www.gnu.org/software/make/)
21-
- [`sed`](https://www.gnu.org/software/sed/)
19+
- [`git`](https://git-scm.com/downloads) 2.2+
20+
- [`make`](https://www.gnu.org/software/make/) 4.2+
21+
- [`sed`](https://www.gnu.org/software/sed/) 4.3+
2222

2323
##### MacOS users
2424

@@ -28,6 +28,22 @@ Install GNU `sed` and `make` which may not be by default:
2828
brew install gnu-sed make
2929
```
3030

31+
Verify that the version of `make` is higher than 4.2 using command `make --version`.
32+
33+
Add the gnubin directory to your PATH from your `~/.bashrc`:
34+
35+
```sh
36+
echo 'export PATH="/usr/local/opt/make/libexec/gnubin:$PATH"' >> ~/.bashrc
37+
```
38+
39+
Verify that the version of `sed` is higher than 4.3 using command `gnu-sed --version`.
40+
41+
Add the `gnubin` directory to your PATH from your `~/.bashrc`:
42+
43+
```sh
44+
echo 'export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"' >> ~/.bashrc
45+
```
46+
3147
## Major and Minor releases
3248

3349
We will use the `v1.3.0` release version in this example.

0 commit comments

Comments
 (0)