Skip to content

Commit eb9d986

Browse files
authored
Merge pull request #22 from opengisch/QF-1494-executable
2 parents a46fd92 + fef5c47 commit eb9d986

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ Options:
146146
--filter TEXT Do not upload the whole project, but only
147147
the files which match the glob.
148148
--exit-on-error / --no-exit-on-error
149-
If any project file download fails stop
150-
downloading the rest. Default: False
149+
If any project file upload fails stop
150+
uploading the rest. Default: False
151151
```
152152

153153
#### download-files

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@
3030
package_dir={"": "src"},
3131
packages=setuptools.find_packages(where="src"),
3232
python_requires=">=3.6",
33+
scripts=["src/bin/qfieldcloud-cli"],
3334
)

src/bin/qfieldcloud-cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def create_project(ctx, name, owner, description, is_public):
202202
)
203203
@click.option(
204204
"--exit-on-error/--no-exit-on-error",
205-
help="If any project file download fails stop downloading the rest. Default: False",
205+
help="If any project file upload fails stop uploading the rest. Default: False",
206206
)
207207
@click.pass_context
208208
def upload_files(ctx, project_id, project_path, filter_glob, exit_on_error):

0 commit comments

Comments
 (0)