Skip to content

Commit

Permalink
fix(type): ensure integer comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
minorOffense committed Dec 11, 2021
1 parent 2935e78 commit dc8f7d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/distro.pp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
$buildname = md5("${distribution}-${api_version}-${distro_build_type}-${distro_root}-${distro_build_location}-${name}")

# Drupal 8 always uses Composer.
if ($distro_build_type == 'composer' or $api_version >= 8) {
if ($distro_build_type == 'composer' or Integer($api_version) >= 8) {
# Do nothing for now.
# @todo run composer install or just leave it be?

Expand Down

0 comments on commit dc8f7d7

Please sign in to comment.