Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Drupal
drupalizer
Compare Revisions
6763c551a5311d6da7b2bbb5dc9c98b9c89814b3...bb4ae8eec3ed89317becf62d996b680bf0e4f552
Commits (1)
Fix syntax error
· bb4ae8ee
Emmanuel Milou
authored
Mar 16, 2016
bb4ae8ee
Hide whitespace changes
Inline
Side-by-side
fabfile.py
View file @
bb4ae8ee
...
...
@@ -507,8 +507,8 @@ def drush_make(role='local', action='install'):
print
green
(
'Interactive mode enabled: {}'
.
format
(
INTERACTIVE_MODE
))
if
(
INTERACTIVE_MODE
and
confirm
(
red
(
'Say [Y] to {} the site at {} with the French translation, if you say [n] '
)
or
not
INTERACTIVE_MODE
:
'the site will be installed in English only'
.
format
(
action
,
DRUPAL_ROOT
))):
if
(
INTERACTIVE_MODE
and
confirm
(
red
(
'Say [Y] to {} the site at {} with the French translation, if you say [n] '
'the site will be installed in English only'
.
format
(
action
,
DRUPAL_ROOT
)))
)
or
not
INTERACTIVE_MODE
:
drush_opts
+=
"--translations=fr "
global
LOCALE
LOCALE
=
True
...
...