Files
facefusion-pinokio/update.js
T
2024-03-14 20:40:40 +01:00

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;
};