summaryrefslogtreecommitdiffstats
path: root/deployment
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-11-26 03:28:56 -0500
committerGitHub <noreply@github.com>2020-11-26 03:28:56 -0500
commit380571cf7315ab14ac848448951234c662d502ba (patch)
treeafc0624b74f7fb38ed96d85a99342ad02330f2ec /deployment
parentcfa4e5eb9902ea8f4581bc6cc8b0500056feaae3 (diff)
ci: Fix some bugs/typos with the deploy script and components (#329)
- Fix bug with choco and homebrew using incorrect bash syntax causing broken downloads. Why this didn't fail, idk. - Add tag entry for manual runs to make it easier to deploy/re-run - Fixed some typos - Fixed incorrect string in choco python script
Diffstat (limited to 'deployment')
-rw-r--r--deployment/windows/choco/choco_packager.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/deployment/windows/choco/choco_packager.py b/deployment/windows/choco/choco_packager.py
index b8dbb633..1e5c5684 100644
--- a/deployment/windows/choco/choco_packager.py
+++ b/deployment/windows/choco/choco_packager.py
@@ -17,8 +17,8 @@ generated_ps1 = args[7]
generated_ps1_dir = args[8]
print("Generating Chocolatey package for:")
-print(" 32-bit: %s", deployment_file_path_32)
-print(" 64-bit: %s", deployment_file_path_64)
+print(" 32-bit: %s" % deployment_file_path_32)
+print(" 64-bit: %s" % deployment_file_path_64)
print(" VERSION: %s" % version)
print(" NUSPEC TEMPLATE: %s" % nuspec_template)
print(" PS1 TEMPLATE: %s" % ps1_template)
@@ -55,4 +55,3 @@ with open(deployment_file_path_32, "rb") as deployment_file_32, open(
with open(generated_ps1, "w") as generated_file:
generated_file.write(substitute)
-