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 b3bb807 commit ac2b4c3Copy full SHA for ac2b4c3
src/diffpy/cmi/cli.py
@@ -468,7 +468,8 @@ def _cmd_install(ns: argparse.Namespace) -> int:
468
else:
469
r = pm.install(path if path.is_absolute() else path.stem)
470
if isinstance(r, bool):
471
- if not r: rc = max(rc, 1)
+ if not r:
472
+ rc = max(rc, 1)
473
elif isinstance(r, int):
474
rc = max(rc, r)
475
except (ValueError, FileNotFoundError) as e:
0 commit comments