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
84fc5b77
Commit
84fc5b77
authored
Apr 10, 2017
by
Sushil Kumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes hard-coded linux based file-separator
Fixes
https://github.com/kubernetes/helm/issues/2254
parent
9856c234
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
helmhome.go
pkg/helm/helmpath/helmhome.go
+2
-2
No files found.
pkg/helm/helmpath/helmhome.go
View file @
84fc5b77
...
@@ -56,8 +56,8 @@ func (h Home) Cache() string {
...
@@ -56,8 +56,8 @@ func (h Home) Cache() string {
// CacheIndex returns the path to an index for the given named repository.
// CacheIndex returns the path to an index for the given named repository.
func
(
h
Home
)
CacheIndex
(
name
string
)
string
{
func
(
h
Home
)
CacheIndex
(
name
string
)
string
{
target
:=
fmt
.
Sprintf
(
"
repository/cache/
%s-index.yaml"
,
name
)
target
:=
fmt
.
Sprintf
(
"%s-index.yaml"
,
name
)
return
h
.
Path
(
target
)
return
h
.
Path
(
"repository"
,
"cache"
,
target
)
}
}
// Starters returns the path to the Helm starter packs.
// Starters returns the path to the Helm starter packs.
...
...
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