Skip to content

Commit

Permalink
escape fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tarioch committed Sep 27, 2021
1 parent 1fcbc87 commit a0a67b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pre_commit_flux/check_flux_helm_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _validateFile(fileToValidate, repos):
yaml.dump(definition["spec"]["values"], valuesFile)

res = subprocess.run(
f"helm pull --repo {quote(chartUrl)} --version '{quote(chartVersion)}' {quote(chartName)}",
f"helm pull --repo {quote(chartUrl)} --version {quote(chartVersion)} {quote(chartName)}",
shell=True,
cwd=tmpDir,
text=True,
Expand Down

0 comments on commit a0a67b0

Please sign in to comment.