8
0

create dbConf path if it doesn't exist

Dieser Commit ist enthalten in:
Daniel Seifert 2024-10-29 08:45:54 +01:00
Ursprung 3fa7719465
Commit 3ad03731ed

Datei anzeigen

@ -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}}");