Skip to content

Commit

Permalink
Fix library binary basename, as it is now always 'minitrino-*' since …
Browse files Browse the repository at this point in the history
…refactoring the repository. Fix library version to match package version.
  • Loading branch information
jefflester committed Apr 29, 2021
1 parent cd0df6e commit 1448186
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/minipresto/cmd/cmd_lib_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def download_and_extract(ctx, version=""):

github_uri = f"https://github.com/jefflester/minipresto/archive/{version}.tar.gz"
tarball = os.path.join(ctx.minipresto_user_dir, f"{version}.tar.gz")
file_basename = f"minipresto-{version}" # filename after unpacking
file_basename = f"minitrino-{version}" # filename after unpacking
lib_dir = os.path.join(ctx.minipresto_user_dir, file_basename, "lib")

try:
Expand Down
2 changes: 1 addition & 1 deletion lib/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2

0 comments on commit 1448186

Please sign in to comment.