Skip to content
This repository was archived by the owner on Nov 13, 2024. It is now read-only.

Commit b41d326

Browse files
authored
Merge pull request #342 from EmlynK/develop
Ensure backup parameter is set properly in fabfile-drushcommand.py.
2 parents 927f061 + ee0b628 commit b41d326

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

drupal/fabfile-drushcommand.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@
1414

1515
@task
1616
def main(shortname, branch, command, backup=True):
17+
18+
if backup == "False":
19+
backup = False
20+
if backup == "True":
21+
backup = True
22+
1723
# Define server roles (if applicable)
1824
common.Utils.define_roles(None, False)
1925
# Run the command

0 commit comments

Comments
 (0)