Skip to content

Commit 5f91223

Browse files
committed
fix: Comments
1 parent e392faa commit 5f91223

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

scripts/download_artifacts.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def copy_artifacts_to_root():
113113
print(f"Copying from {SCRIPTS_ARTIFACTS_DIR} to {ROOT_ARTIFACTS_DIR}")
114114
shutil.copytree(SCRIPTS_ARTIFACTS_DIR, ROOT_ARTIFACTS_DIR)
115115
print("Done copying artifacts")
116-
print("\nContents of artifacts directory:")
116+
print("\nFolder content of artifacts directory:")
117117
for item in sorted(ROOT_ARTIFACTS_DIR.iterdir()):
118118
print(f" {item.name}")
119119

@@ -135,8 +135,7 @@ def main():
135135
if env_platform:
136136
print(f"Using platform from environment variable C2PA_LIBS_PLATFORM: {env_platform}")
137137
platform_id = env_platform or get_platform_identifier()
138-
print("## platform_id when downloading: ", platform_id)
139-
print("## env_platform: ", env_platform)
138+
print("Looking up releases for platform id: ", platform_id)
140139
platform_source = "environment variable" if env_platform else "auto-detection"
141140
print(f"Target platform: {platform_id} (set through{platform_source})")
142141

src/c2pa/lib.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def get_platform_identifier(cpu_arch: Optional[CPUArchitecture] = None) -> str:
6262
elif system == "windows":
6363
return "x86_64-pc-windows-msvc"
6464
elif system == "linux":
65-
print("## System is Linux, arch is: ", _get_architecture())
6665
if _get_architecture() in ['arm64', 'aarch64']:
6766
return "aarch64-unknown-linux-gnu"
6867
return "x86_64-unknown-linux-gnu"

0 commit comments

Comments
 (0)