create dbConf path if it doesn't exist

Cette révision appartient à :
Daniel Seifert 2024-10-29 08:45:54 +01:00
Parent 3fa7719465
révision 3ad03731ed

Voir le fichier

@ -72,7 +72,10 @@ task('setup:createDbConfig', function () {
throw new \RuntimeException('missing db_conf_path option, task stopped');
}
if (!test('[ -d $(dirname "{{db_conf_path}}") ]')) {
throw new \RuntimeException('configured path {{db_conf_path}} missing, task stopped');
run('mkdir -p $(dirname "{{db_conf_path}}")');
if (!test('[ -d $(dirname "{{db_conf_path}}") ]')) {
throw new \RuntimeException('unable to create configured path {{db_conf_path}}, task stopped');
}
}
if (!test("[ -f {{db_conf_path}} ]")) {
run("touch {{db_conf_path}}");