make OXID sub tasks hidden

This commit is contained in:
Daniel Seifert 2024-11-04 21:55:43 +01:00
parent 18aa3c60b6
commit 7c429da0f3
Signed by: DanielS
GPG Key ID: 6A513E13AEE66170
2 changed files with 5 additions and 5 deletions

View File

@ -4,22 +4,22 @@ namespace Deployer;
task('deploy:d3OxidBeforeVendorsTasks', [
'deploy:oxid_backup_configfile'
]);
])->hidden();
task('deploy:oxid_backup_configfile', function() {
if (test('[ -f {{release_path}}/source/config.inc.php ]')) {
run('mv {{release_path}}/source/config.inc.php {{release_path}}/source/config.deployment.inc.php');
}
});
})->hidden();
desc('Oxid related tasks');
task('deploy:d3OxidAfterVendorTasks', [
'deploy:oxid_restore_configfile',
'deploy:clear_paths'
]);
])->hidden();
task('deploy:oxid_restore_configfile', function() {
if (test('[ -f {{release_path}}/source/config.deployment.inc.php ]')) {
run('mv {{release_path}}/source/config.deployment.inc.php {{release_path}}/source/config.inc.php');
}
});
})->hidden();

View File

@ -4,7 +4,7 @@ namespace Deployer;
require_once 'inc/database.php';
desc('create database coniguration file');
desc('create database configuration file');
task('setup:createDbConfig', function () {
try {
if (!has('db_conf_path') || !strlen(get('db_conf_path'))) {