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