Skip to content

Commit ffcbfb7

Browse files
committed
fix-chart-name-and-version
1 parent 9209828 commit ffcbfb7

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.2
1+
0.2.3

charts/keepup-helm-scraper/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: keepup-helm-scraper
33
description: A Helm chart for scrape charts release information.
44
type: application
5-
version: 0.3.5
6-
appVersion: 0.2.2
5+
version: 0.3.6
6+
appVersion: 0.2.3

src/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func main() {
7979

8080
var imagesInstalled []HelmChartInfo
8181
for ns, versionedImage := range uniqImagesByNs {
82-
for v, i := range versionedImage {
82+
for i, v := range versionedImage {
8383
imagesInstalled = append(imagesInstalled, HelmChartInfo{
8484
ChartName: i,
8585
Version: v,

0 commit comments

Comments
 (0)