Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dev logging on local_extension_repo creation #10424

Merged
merged 1 commit into from Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions scripts/create_local_extension_repo.py
Expand Up @@ -29,8 +29,6 @@
with open(duckdb_platform_out, 'r') as f:
duckdb_platform = [line.split(None, 1)[0] for line in f][0]

print(f"Paths as received: {extension_path}, {dst_path} + '/{duckdb_version}/{duckdb_platform}/")

# Create destination path
dest_path = os.path.join(dst_path, duckdb_version, duckdb_platform)
if not os.path.exists(dest_path):
Expand All @@ -39,8 +37,6 @@
# Now copy over the extensions to the correct path
glob_string = os.path.join(extension_path, 'extension', '*', '*.' + postfix)

print("Copying extensions into repository:")
for file in glob.glob(glob_string):
dest_file = os.path.join(dest_path, os.path.basename(file))
print(f" > {file} -> {dest_file}")
shutil.copy(file, dest_file)