Skip to content

Commit

Permalink
Merge pull request #63 from duckdb/jray/rename-libduckdb-fetching-files
Browse files Browse the repository at this point in the history
rename libduckdb fetching files to be architecture-specific
  • Loading branch information
jraymakers authored Dec 15, 2024
2 parents 8f21499 + b3cb7ae commit 0325c80
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ Change version in:
### Upgrade DuckDB Version

Change version in:
- `bindings/scripts/fetch_libduckdb_linux.py`
- `bindings/scripts/fetch_libduckdb_mac.py`
- `bindings/scripts/fetch_libduckdb_win.py`
- `bindings/scripts/fetch_libduckdb_linux_amd64.py`
- `bindings/scripts/fetch_libduckdb_osx_universal.py`
- `bindings/scripts/fetch_libduckdb_windows_amd64.py`
- `bindings/test/constants.test.ts`

Also change DuckDB version in package versions.
Expand Down
6 changes: 3 additions & 3 deletions bindings/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
'conditions': [
['OS=="linux"', {
'variables': {
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_linux.py',
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_linux_amd64.py',
},
}],
['OS=="mac"', {
'variables': {
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_mac.py',
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_osx_universal.py',
},
}],
['OS=="win"', {
'variables': {
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_win.py',
'script_path': '<(module_root_dir)/scripts/fetch_libduckdb_windows_amd64.py',
},
}],
],
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0325c80

Please sign in to comment.