1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Default git module to master branch so branch= is not required.

This commit is contained in:
Michael DeHaan 2012-05-10 00:40:49 -04:00
parent e6416def6b
commit 45100f03b1

View file

@ -71,7 +71,7 @@ for x in items:
dest = params['dest'] dest = params['dest']
repo = params['repo'] repo = params['repo']
branch = params.get('branch') branch = params.get('branch', 'master')
version = params.get('version', 'HEAD') version = params.get('version', 'HEAD')
# =========================================== # ===========================================