We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36d004 commit 5130c6bCopy full SHA for 5130c6b
.github/workflows/CI.yaml
@@ -56,6 +56,11 @@ jobs:
56
run: |
57
python -m pip list
58
59
+ - name: Install CLI
60
+ run: |
61
+ python -m offsets-db-data-orcli install --move --destination /usr/local/bin
62
+ python -m offsets-db-data-orcli --help
63
+
64
- name: Run tests
65
66
python -m pytest
offsets_db_data/openrefine.py
@@ -31,7 +31,7 @@ def install(
31
"""
32
Install orcli from GitHub.
33
34
- file_path = destination if move else 'orcli'
+ file_path = f'{destination}/orcli' if move else 'orcli'
35
abs_file_path = pathlib.Path(file_path).expanduser().resolve()
36
filename = abs_file_path.as_posix()
37
# Download orcli from GitHub
0 commit comments