Skip to content

Commit b3cb7ae

Browse files
committed
rename libduckdb fetching files to be architecture-specific
1 parent 8f21499 commit b3cb7ae

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ Change version in:
5252
### Upgrade DuckDB Version
5353

5454
Change version in:
55-
- `bindings/scripts/fetch_libduckdb_linux.py`
56-
- `bindings/scripts/fetch_libduckdb_mac.py`
57-
- `bindings/scripts/fetch_libduckdb_win.py`
55+
- `bindings/scripts/fetch_libduckdb_linux_amd64.py`
56+
- `bindings/scripts/fetch_libduckdb_osx_universal.py`
57+
- `bindings/scripts/fetch_libduckdb_windows_amd64.py`
5858
- `bindings/test/constants.test.ts`
5959

6060
Also change DuckDB version in package versions.

bindings/binding.gyp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
'conditions': [
77
['OS=="linux"', {
88
'variables': {
9-
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_linux.py',
9+
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_linux_amd64.py',
1010
},
1111
}],
1212
['OS=="mac"', {
1313
'variables': {
14-
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_mac.py',
14+
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_osx_universal.py',
1515
},
1616
}],
1717
['OS=="win"', {
1818
'variables': {
19-
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_win.py',
19+
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_windows_amd64.py',
2020
},
2121
}],
2222
],

0 commit comments

Comments
 (0)