Files
facefusion-pinokio/update.js
T
2024-09-22 11:19:40 +02:00

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.0.0',
path: 'facefusion'
}
}
]
};
return config;
};