Files
facefusion-pinokio/update.js
T
2024-05-19 18:17:32 +02:00

36 lines
407 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 2.6.0',
path: 'facefusion'
}
}
]
};
return config;
};