git-to-k8s
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -232,5 +232,5 @@ 'use strict' | ||
if (_shell.exec(`helm list | cut -f 1| grep " ${chart.release} "`).code == 0) { | ||
return `helm upgrade -f ${dir} ${chart.release} ./${chart.path}` | ||
return `helm upgrade -f ${dir} ${chart.release} ${chart.path}` | ||
} | ||
return `helm install --name ${chart.release} -f ${dir} ./${chart.path}` | ||
return `helm install --name ${chart.release} -f ${dir} ${chart.path}` | ||
}) | ||
@@ -237,0 +237,0 @@ })) |
{ | ||
"name": "git-to-k8s", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Small tool to automate the git to url flow on k8s", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
88585