mirror of
https://github.com/facefusion/facefusion-pinokio.git
synced 2026-04-25 16:35:56 +02:00
36 lines
400 B
JavaScript
36 lines
400 B
JavaScript
module.exports = () =>
|
|
{
|
|
const config =
|
|
{
|
|
run:
|
|
[
|
|
{
|
|
method: 'shell.run',
|
|
params:
|
|
{
|
|
'message': 'git pull'
|
|
}
|
|
},
|
|
{
|
|
method: 'shell.run',
|
|
params:
|
|
{
|
|
message: 'git pull',
|
|
path: 'facefusion'
|
|
}
|
|
},
|
|
{
|
|
method: 'shell.run',
|
|
params:
|
|
{
|
|
message: 'git checkout 2.4.0',
|
|
path: 'facefusion'
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
return config;
|
|
};
|
|
|