mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 06:10:22 -07:00
Unquote urls in YAML - source_control (#5795)
This commit is contained in:
parent
013be6fa1c
commit
18d022d808
3 changed files with 10 additions and 10 deletions
|
@ -96,7 +96,7 @@ requirements: [ ]
|
|||
EXAMPLES = '''
|
||||
# Ensure the current working copy is inside the stable branch and deletes untracked files if any.
|
||||
- hg:
|
||||
repo: 'https://bitbucket.org/user/repo1'
|
||||
repo: https://bitbucket.org/user/repo1
|
||||
dest: /home/user/repo1
|
||||
revision: stable
|
||||
purge: yes
|
||||
|
@ -104,7 +104,7 @@ EXAMPLES = '''
|
|||
# Example just get information about the repository whether or not it has
|
||||
# already been cloned locally.
|
||||
- hg:
|
||||
repo: 'git://bitbucket.org/user/repo'
|
||||
repo: git://bitbucket.org/user/repo
|
||||
dest: /srv/checkout
|
||||
clone: no
|
||||
update: no
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue