changed single quotes to double

This commit is contained in:
2025-05-26 12:25:22 +03:00
parent a72b3ca50f
commit b9853855a1
6 changed files with 11 additions and 11 deletions

View File

@@ -6,7 +6,7 @@ def call(String releaseName, String chartRepo, String chartName, String version,
helmCommand += " --set ${key}=${value}"
}
sh 'helmCommand'
echo "Helm chart ${chartName} deployed -> $kubeApi"
sh "${helmCommand}"
echo "Helm chart ${chartName} deployed -> ${kubeApi}"
}
}