Skip to content

Commit

Permalink
Restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuzu CI committed Oct 9, 2024
1 parent 59ecb8f commit f3c2dc3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/collect-extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def collect_exts():
if not os.path.exists(ext_build_path):
continue
print("Found extension: " + ext)
ext_dst_path = os.path.abspath(os.path.join(DST_DIR, ext))
ext_dst_path = os.path.abspath(DST_DIR)
os.makedirs(ext_dst_path, exist_ok=True)
for f in os.listdir(ext_build_path):
if not f.endswith(".kuzu_extension"):
Expand Down Expand Up @@ -51,7 +51,6 @@ def main():
shutil.rmtree(DST_DIR, ignore_errors=True)
os.makedirs(DST_DIR, exist_ok=True)
collect_exts()
copy_duckdb()


if __name__ == "__main__":
Expand Down

0 comments on commit f3c2dc3

Please sign in to comment.