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 06ec282 commit c3ec3f9Copy full SHA for c3ec3f9
src/manage/commands.py
@@ -793,13 +793,15 @@ class InstallCommand(BaseCommand):
793
from_script = None
794
enable_shortcut_kinds = None
795
disable_shortcut_kinds = None
796
- default_install_tag = DEFAULT_TAG
+ default_install_tag = None
797
798
def __init__(self, args, root=None):
799
super().__init__(args, root)
800
801
if not self.source:
802
self.source = DEFAULT_SOURCE_URL
803
+ if not self.default_install_tag:
804
+ self.default_install_tag = self.default_tag
805
if "://" not in str(self.source):
806
try:
807
self.source = Path(self.source).absolute().as_uri()
0 commit comments