Files
facefusion-pinokio/update.js
T
henryruhs 34839e8da0 Add next
2024-02-03 17:17:58 +01:00

36 lines
411 B
JavaScript

module.exports = () =>
{
const config =
{
run:
[
{
method: 'shell.run',
params:
{
'message': 'git pull'
}
},
{
method: 'shell.run',
params:
{
message: 'git pull origin next',
path: 'facefusion'
}
},
{
method: 'shell.run',
params:
{
message: 'git checkout next',
path: 'facefusion'
}
}
]
};
return config;
};