summaryrefslogtreecommitdiffstats
path: root/deployment
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-08-23 15:48:06 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2020-08-23 15:48:06 -0400
commitf030600468f8fcefebc9f40eeaebb83b19305386 (patch)
tree58ec678e3a79833788a420da64bb9939d351704b /deployment
parent3165918d52456e60774d8051cbad9389ded33df3 (diff)
ci: Fix another typo
Diffstat (limited to 'deployment')
-rw-r--r--deployment/windows/choco/choco_packager.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/deployment/windows/choco/choco_packager.py b/deployment/windows/choco/choco_packager.py
index 445349a4..453a482e 100644
--- a/deployment/windows/choco/choco_packager.py
+++ b/deployment/windows/choco/choco_packager.py
@@ -22,7 +22,8 @@ print(" VERSION: %s" % version)
print(" NUSPEC TEMPLATE: %s" % nuspec_template)
print(" PS1 TEMPLATE: %s" % ps1_template)
print(" GENERATED NUSPEC: %s" % generated_nuspec)
-print(" GENERATED_PS1: %s" % generated_ps1)
+print(" GENERATED PS1: %s" % generated_ps1)
+print(" GENERATED PS1 DIR: %s" % generated_ps1_dir)
with open(deployment_file_path_32, "rb") as deployment_file_32, open(
deployment_file_path_64, "rb"
@@ -43,7 +44,7 @@ with open(deployment_file_path_32, "rb") as deployment_file_32, open(
with open(generated_nuspec, "w") as generated_file:
generated_file.write(substitute)
- os.makedirs("tools")
+ os.makedirs(generated_ps1_dir)
with open(ps1_template, "r") as template_file:
template = Template(template_file.read())
substitute = template.safe_substitute(version=version, hash_32=hash_32, hash_64=hash_64)