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

@@ -1,6 +1,6 @@
def call(String chartFile, String nexusUrl, String nexusUser, String nexusPass) {
container('maven') {
sh 'curl -u ${nexusUser}:${nexusPass} --upload-file ${chartFile} ${nexusUrl}'
sh "curl -u ${nexusUser}:${nexusPass} --upload-file ${chartFile} ${nexusUrl}"
echo "Helm chart uploaded: ${chartFile} -> ${nexusUrl}"
}
}