Set binaries
This commit is contained in:
parent
f10512c46e
commit
3d14e10ced
1 changed files with 8 additions and 0 deletions
|
@ -12,6 +12,14 @@ set('repository', 'ssh://git@git.thisfro.ch:222/thisfro/pflaenz.li.git');
|
||||||
// [Optional] Allocate tty for git clone. Default value is false.
|
// [Optional] Allocate tty for git clone. Default value is false.
|
||||||
set('git_tty', true);
|
set('git_tty', true);
|
||||||
|
|
||||||
|
set('bin/php', function() {
|
||||||
|
return '/opt/php8.0/bin/php';
|
||||||
|
});
|
||||||
|
|
||||||
|
set('bin/composer', function() {
|
||||||
|
return '/opt/php8.0/bin/composer2';
|
||||||
|
});
|
||||||
|
|
||||||
// Shared files/dirs between deploys
|
// Shared files/dirs between deploys
|
||||||
add('shared_files', ['public/.htaccess']);
|
add('shared_files', ['public/.htaccess']);
|
||||||
add('shared_dirs', ['public/uploads']);
|
add('shared_dirs', ['public/uploads']);
|
||||||
|
|
Reference in a new issue