mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-21 19:33:03 +00:00
Issue #63: Try using travis_wait without escaping the double quotes.
This commit is contained in:
parent
df25444b3f
commit
d91ca374fa
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,8 @@ script:
|
|||
- "ansible-playbook main.yml --syntax-check"
|
||||
|
||||
# Test the playbook.
|
||||
- "travis_wait 30 ansible-playbook --extra-vars '{\"configure_sudoers\":\"false\"}' main.yml"
|
||||
- >
|
||||
travis_wait 30 ansible-playbook --extra-vars '{"configure_sudoers":"false"}' main.yml
|
||||
|
||||
# Test the playbook's idempotence.
|
||||
- idempotence=$(mktemp)
|
||||
|
|
Loading…
Reference in a new issue