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
Commits
06e38111
Commit
06e38111
authored
Jul 25, 2017
by
Samuel Sirois
Browse files
Add an env.var to tell drush make to ignore checksums
parent
1c878517
Pipeline
#6709
failed with stages
in 48 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
README.adoc
View file @
06e38111
...
...
@@ -37,6 +37,22 @@ Those are global project parameters mandatory to Drupalizer.
|===
=== Drush make parameters
Those are parameters that will influence the options used for `drush make` command.
|===
|Parameters |Description
|_drush-make-ignore-checksums_
|Ignores package checksums while downloading them if set to True.
Do not use this until you know what you do in a development environment only.
Added here because of a https://www.drupal.org/node/2897344[_situation_] still not resolved.
|===
=== Site settings
|===
...
...
drush.py
View file @
06e38111
...
...
@@ -61,6 +61,9 @@ def make(action='install'):
if
env
.
get
(
'always_use_pty'
,
True
):
drush_opts
+=
" --working-copy --no-gitinfofile"
if
env
.
get
(
'drush_make_ignore_checksums'
,
True
):
drush_opts
+=
" --ignore-checksums"
if
not
h
.
fab_exists
(
'local'
,
env
.
site_root
):
local
(
'mkdir {}'
.
format
(
env
.
site_root
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment