From 484160161927b35e88d9b0258412e93a0b77adcd Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Fri, 14 Aug 2020 10:45:49 +0200
Subject: [PATCH] Fix default boolean value

---
 templates/d8_settings.php.jinja2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/d8_settings.php.jinja2 b/templates/d8_settings.php.jinja2
index 1757869..37deb5c 100644
--- a/templates/d8_settings.php.jinja2
+++ b/templates/d8_settings.php.jinja2
@@ -57,7 +57,7 @@ $settings['trusted_host_patterns'] = array(
 // As soon as Drupal 8.8+ will be used everywhere, the following line can be removed.
 $config['system.file']['path']['temporary'] = {% if drupal.jail is defined %}is_dir('{{ jailroot }}/{{ drupal.jail.name }}/tmp') ? '{{ jailroot }}/{{ drupal.jail.name }}/tmp' : '/tmp'{% else %}'/tmp'{% endif %};
 
-{% if drupal.isversion9|default(no) %}
+{% if drupal.isversion9|default(false) %}
 $settings['config_sync_directory'] = 'sites/{{ item.shortname|default("default") }}/files/{{ item.config|default("config") }}/sync';
 {% else %}
 {% for key in drupal_config_directories %}
-- 
GitLab