Skip to content

Commit

Permalink
try adding double quotes to zip url
Browse files Browse the repository at this point in the history
  • Loading branch information
jraymakers committed Jun 30, 2024
1 parent fb077ee commit 868a578
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions alt/bindings/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
'conditions': [
['OS=="linux"', {
'variables': {
'zip_url': 'https://github.com/duckdb/duckdb/releases/download/v1.0.0/libduckdb-linux-amd64.zip',
'zip_url': '"https://github.com/duckdb/duckdb/releases/download/v1.0.0/libduckdb-linux-amd64.zip"',
},
}],
['OS=="mac"', {
'variables': {
'zip_url': 'https://github.com/duckdb/duckdb/releases/download/v1.0.0/libduckdb-osx-universal.zip',
'zip_url': '"https://github.com/duckdb/duckdb/releases/download/v1.0.0/libduckdb-osx-universal.zip"',
},
}],
['OS=="win"', {
'variables': {
'zip_url': 'https://github.com/duckdb/duckdb/releases/download/v1.0.0/libduckdb-windows-amd64.zip',
'zip_url': '"https://github.com/duckdb/duckdb/releases/download/v1.0.0/libduckdb-windows-amd64.zip"',
},
}],
],
Expand Down
2 changes: 1 addition & 1 deletion alt/bindings/scripts/fetch_libduckdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
urllib.request.urlretrieve(libduckdb_zip_url, libduckdb_zip_path)

zip = zipfile.ZipFile(libduckdb_zip_path)
print("extracting: " + zip.namelist())
print("extracting: " + ", ".join(zip.namelist()))
zip.extractall(output_dir)

# for file_name in libduckdb_file_names:
Expand Down

0 comments on commit 868a578

Please sign in to comment.