Files
facefusion-pinokio/update.js
T
2024-02-23 23:04:43 +01:00

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