Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
eb1f3685
Commit
eb1f3685
authored
Apr 28, 2017
by
Matt Butcher
Committed by
GitHub
Apr 28, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2344 from unguiculus/feature/prereqs
Add Git and Mercurial to build prerequisites
parents
d7ab16ad
8c437e51
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
Makefile
Makefile
+4
-0
developers.md
docs/developers.md
+2
-0
No files found.
Makefile
View file @
eb1f3685
...
...
@@ -104,6 +104,7 @@ coverage:
HAS_GLIDE
:=
$(
shell
command
-v
glide
;
)
HAS_GOX
:=
$(
shell
command
-v
gox
;
)
HAS_GIT
:=
$(
shell
command
-v
git
;
)
HAS_HG
:=
$(
shell
command
-v
hg
;
)
.PHONY
:
bootstrap
bootstrap
:
...
...
@@ -116,6 +117,9 @@ endif
ifndef
HAS_GIT
$(error
You
must
install
Git)
endif
ifndef
HAS_HG
$(error
You
must
install
Mercurial)
endif
glide
install
--strip-vendor
go
build
-o
bin/protoc-gen-go
./vendor/github.com/golang/protobuf/protoc-gen-go
...
...
docs/developers.md
View file @
eb1f3685
...
...
@@ -10,6 +10,8 @@ Helm and Tiller.
-
kubectl 1.2 or later
-
A Kubernetes cluster (optional)
-
The gRPC toolchain
-
Git
-
Mercurial
## Building Helm/Tiller
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment