File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff 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 ("\n Contents of artifacts directory:" )
116+ print ("\n Folder 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
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments