Skip to content

Commit

Permalink
build(drush): use drush 8.4.1 when using drush 8 (#41)
Browse files Browse the repository at this point in the history
Co-authored-by: Nick Milton <[email protected]>
  • Loading branch information
minorOffense and NickDJM authored Sep 10, 2020
1 parent 0f2e264 commit d219cf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifests/init.pp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

class drush (
$version = '8.2.3',
$version = '8.4.1',
$drush_cmd = $::drush::params::drush_cmd,
$drush_release_url = $::drush::params::drush_release_url
) inherits ::drush::params {
Expand All @@ -14,9 +14,9 @@
case $version[0] {
'6': { $version_actual = '6.7.0' }
'7': { $version_actual = '7.4.0' }
'8': { $version_actual = '8.2.3' }
'8': { $version_actual = '8.4.1' }
'9': { $version_actual = '0.6.0' }
default: { $version_actual = '8.2.3' } # Default to latest stable.
default: { $version_actual = '8.4.1' } # Default to latest stable.
}

# Download the drush version.
Expand Down

0 comments on commit d219cf1

Please sign in to comment.