Skip to content

Commit

Permalink
Fix duplicate printing & plugin install script
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilsbhat committed Sep 25, 2021
1 parent 8a50464 commit 02da9e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion install-binary.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,12 @@ function install() {
exit 1
fi

echo
echo "helm-images is installed."
echo
echo "See https://github.com/nikhilsbhat/helm-images for help getting started."
"${HELM_PLUGIN_DIR}"/bin/helm-images -h
echo
echo "See https://github.com/nikhilsbhat/helm-images#readme for more information on getting started."
}

install "$@"
1 change: 0 additions & 1 deletion pkg/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ func getUniqEntries(slice []kind) []kind {
func contains(slice []kind, image string) bool {
for _, slc := range slice {
if slc.Image == image {
fmt.Println(image, slc.Image)
return true
}
}
Expand Down
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "images"
version: "0.0.4"
version: "0.0.5"
usage: "Lists all/selected docker images that are part of deployment"
description: "Lists all/selected docker images that would be part of deployment of selected chart"
useTunnel: true
Expand Down

0 comments on commit 02da9e0

Please sign in to comment.