Skip to content

Commit

Permalink
fix output path
Browse files Browse the repository at this point in the history
  • Loading branch information
pyth0n1c authored Jul 6, 2023
1 parent 8c17053 commit 5027278
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 @@ -142,7 +142,7 @@ def packageApp(self) -> None:
except Exception as e:
print(f"Error using slim to package app: {str(e)}")
'''
with tarfile.open(name, "w:gz") as app_archive:
with tarfile.open(output_app_expected_name, "w:gz") as app_archive:
app_archive.add(self.output_path, arcname=os.path.basename(self.output_path))

def inspectApp(self)-> None:
Expand Down

0 comments on commit 5027278

Please sign in to comment.