Skip to content

Commit

Permalink
fix: set build=True as mentioned in the docs (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez authored Nov 7, 2021
1 parent fd54553 commit 34e1c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/dokku_clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def main():
"app": {"required": True, "type": "str"},
"repository": {"required": True, "type": "str"},
"version": {"required": False, "type": "str"},
"build": {"required": False, "type": "bool"},
"build": {"default": True, "required": False, "type": "bool"},
}

module = AnsibleModule(argument_spec=fields, supports_check_mode=False)
Expand Down

0 comments on commit 34e1c01

Please sign in to comment.