File tree 1 file changed +19
-3
lines changed
website/content/en/docs/contribution-guidelines
1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ Table of contents:
16
16
17
17
## Prerequisites
18
18
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+
22
22
23
23
##### MacOS users
24
24
@@ -28,6 +28,22 @@ Install GNU `sed` and `make` which may not be by default:
28
28
brew install gnu-sed make
29
29
```
30
30
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
+
31
47
## Major and Minor releases
32
48
33
49
We will use the ` v1.3.0 ` release version in this example.
You can’t perform that action at this time.
0 commit comments