Skip to content

Commit

Permalink
improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick committed Sep 25, 2023
1 parent be13985 commit 8200682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contentctl/output/conf_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def packageApp(self) -> None:
# if not readme_file.is_file():
# raise Exception("The README file does not exist in this directory. Cannot build app.")
# shutil.copyfile(readme_file, input_app_path/readme_file.name)
output_app_expected_name = pathlib.Path(self.config.build.path_root)/f"{self.config.build.name}-{self.config.build.version}.tar.gz"
output_app_expected_name = pathlib.Path(os.path.join(self.input_path, self.config.build.path_root))/f"{self.config.build.name}-{self.config.build.version}.tar.gz"


# try:
Expand Down

0 comments on commit 8200682

Please sign in to comment.