Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
reschandreas committed Dec 31, 2023
1 parent 65d17f5 commit a4f9f5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/generators/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,11 @@ def generate(self) -> str:
we don't want to handle the credentials in the CI system.
:return: bash script
"""
self.result = []
self.result = ""
utils.replace_environment_variables_in_windfile(environment=self.environment, windfile=self.windfile)
self.add_repository_urls_to_environment()
for step in self.windfile.actions:
if isinstance(step.root, ScriptAction):
self.handle_step(name=step.root.name, step=step.root, call=not step.root.runAlways)
self.result.append(self.generate_using_jinja2())
self.result = self.generate_using_jinja2()
return super().generate()

0 comments on commit a4f9f5a

Please sign in to comment.