Skip to content

Commit 75c1822

Browse files
committed
chore: resolve merge conflicts
Signed-off-by: behnazh-w <[email protected]>
1 parent 87b4a6a commit 75c1822

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/macaron/build_spec_generator/build_spec_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def gen_build_spec_for_purl(
155155
os.path.relpath(build_spec_file_path, os.getcwd()),
156156
)
157157
rich_handler = access_handler.get_handler()
158-
rich_handler.update_gen_build_spec("Build Spec Path:", os.path.relpath(build_spec_filepath, os.getcwd()))
158+
rich_handler.update_gen_build_spec("Build Spec Path:", os.path.relpath(build_spec_file_path, os.getcwd()))
159159
try:
160160
with open(build_spec_file_path, mode="w", encoding="utf-8") as file:
161161
file.write(build_spec_content)

src/macaron/console.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,6 @@ def __init__(self, *args: Any, verbose: bool = False, **kwargs: Any) -> None:
8585
self.find_source_table.add_row(key, value)
8686
self.dump_defaults: str | Status = Status("[green]Generating[/]")
8787
self.gen_build_spec: dict[str, str | Status] = {
88-
"Package URL:": Status("[green]Processing[/]"),
89-
"Repository URL:": Status("[green]Processing[/]"),
90-
"Commit Hash:": Status("[green]Processing[/]"),
91-
"Build Tools:": Status("[green]Processing[/]"),
9288
"Build Spec Path:": "Not Generated",
9389
}
9490
self.gen_build_spec_table = Table(show_header=False, box=None)

0 commit comments

Comments
 (0)