@@ -15,7 +15,7 @@ def usage():
1515
1616def write_file (destpath , contents ):
1717 with open (destpath , "w" ) as destfile :
18- destfile .write (contents )
18+ destfile .write (contents )
1919
2020
2121def run_cmd (cmdarray , workingdir , captureout = False ):
@@ -38,7 +38,7 @@ def generate_templates(installer_version, tag_version):
3838 template = env .get_template ("construct.yaml.jinja2" )
3939 output = template .render (installer_version = installer_version )
4040 write_file ("construct.yaml" , output )
41-
41+
4242 template = env .get_template ("post-install.bat.jinja2" )
4343 output = template .render (tag_version = tag_version )
4444 write_file ("post-install.bat" , output )
@@ -51,10 +51,10 @@ def generate_templates(installer_version, tag_version):
5151def run_constructor ():
5252 print ("Running constructor" )
5353 scriptdir = os .path .dirname (os .path .realpath (__file__ ))
54- builddir = os .path .join (scriptdir , ' build' )
54+ builddir = os .path .join (scriptdir , " build" )
5555 if not os .path .exists (builddir ):
5656 os .makedirs (builddir )
57- run_cmd ([' constructor' , scriptdir ], builddir )
57+ run_cmd ([" constructor" , scriptdir ], builddir )
5858
5959
6060def main ():
0 commit comments