Bug 1386351 - Let the Lint hook default to pre-push (for git) if being called directly. r=glandium

MozReview-Commit-ID: 9TnLu8w92oN
This commit is contained in:
Mark Banner 2017-11-21 11:10:09 +00:00
Родитель cfc465ea00
Коммит 4da30e3721
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -35,6 +35,8 @@ def hg(ui, repo, **kwargs):
def git():
hooktype = os.path.basename(__file__)
if hooktype == 'hooks.py':
hooktype = 'pre-push'
return run_mozlint(hooktype, [])