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
04218a4d
Commit
04218a4d
authored
Oct 17, 2016
by
Matt Butcher
Committed by
GitHub
Oct 17, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1384 from technosophos/fix/1383-return-non-match
fix(helm): return correct version on dep up
parents
d61d5acb
84544bca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
manager.go
cmd/helm/downloader/manager.go
+0
-2
No files found.
cmd/helm/downloader/manager.go
View file @
04218a4d
...
@@ -333,8 +333,6 @@ func findVersionedEntry(version string, vers repo.ChartVersions) (*repo.ChartVer
...
@@ -333,8 +333,6 @@ func findVersionedEntry(version string, vers repo.ChartVersions) (*repo.ChartVer
if
version
==
""
||
versionEquals
(
version
,
verEntry
.
Version
)
{
if
version
==
""
||
versionEquals
(
version
,
verEntry
.
Version
)
{
return
verEntry
,
nil
return
verEntry
,
nil
}
}
return
verEntry
,
nil
}
}
return
nil
,
errors
.
New
(
"no matching version"
)
return
nil
,
errors
.
New
(
"no matching version"
)
}
}
...
...
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