We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a70f71f commit b3cbfe9Copy full SHA for b3cbfe9
src/ivpm/pkg_types/package_git.py
@@ -60,7 +60,7 @@ def update(self, update_info : ProjectUpdateInfo) -> ProjInfo:
60
# Modify the URL to use SSH/key-based clones
61
# unless anonymous cloning was requested
62
if update_info.args is not None and hasattr(update_info.args, "anonymous"):
63
- use_anonymous = True
+ use_anonymous = getattr(update_info.args, "anonymous")
64
else:
65
use_anonymous = False
66
0 commit comments