rm outdated comment about having to specify the default branch

This commit is contained in:
riscy 2021-09-06 11:45:29 -07:00
parent 19c776a5bf
commit cd9594bc67

View file

@ -673,9 +673,6 @@ def _clone(repo: str, into: str, branch: str, fetcher: str = 'github') -> bool:
os.makedirs(into, exist_ok=True)
scm = 'hg' if fetcher == 'hg' else 'git'
if scm == 'git':
# If a package's repository doesn't use the master branch, then the
# MELPA recipe must specify the branch using the :branch keyword
# https://github.com/melpa/melpa/pull/6712
options = ['--single-branch']
if branch:
options += ['--branch', branch]