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.
2 parents 07de30a + ea61f30 commit de05375Copy full SHA for de05375
1 file changed
src/bin/qfieldcloud-cli
@@ -300,13 +300,10 @@ def package_status(ctx, project_id):
300
if status["layers"] is None:
301
if status["status"] == "STATUS_ERROR":
302
print("Packaging have never been triggered on this project. Please run:")
303
- print(f"qfieldcloud-cli packaging-trigger {project_id}")
304
-
+ print(f"qfieldcloud-cli package-trigger {project_id}")
305
return
306
307
- for layer_obj in status["layers"]["steps"][1]["outputs"][
308
- "layer_checks"
309
- ].values():
+ for layer_obj in status["layers"].values():
310
if layer_obj["valid"]:
311
print(
312
f'Layer "{layer_obj["name"]}" is valid, finished with status: {layer_obj["status"]}'
0 commit comments