Skip to content

Commit 241be5f

Browse files
committed
download-c-lib: use v0.21.1-alpha0 #31
1 parent b013949 commit 241be5f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

download-c-lib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Script used to download objectbox-c shared libraries for all supported platforms. Execute by running `make get-lib`
77
# on first checkout of this repo and any time after changing the objectbox-c lib version.
88

9-
version = "v0.21.0" # see objectbox/c.py required_version
9+
version = "v0.21.1-alpha0" # see objectbox/c.py required_version
1010
variant = 'objectbox' # or 'objectbox-sync'
1111

1212
base_url = "https://github.com/objectbox/objectbox-c/releases/download/"
@@ -49,6 +49,7 @@ def download(rel_path: str):
4949

5050
# Download the file from `url`, save it in a temporary directory and get the path to it (e.g. '/tmp/tmpb48zma')
5151
source_url = url_for(rel_path);
52+
print(f"URL {source_url}")
5253
tmp_file, headers = urllib.request.urlretrieve(source_url)
5354

5455
# extract the file

0 commit comments

Comments
 (0)