Files
2026-03-08 16:26:37 +01: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.5.4',
path: 'facefusion'
}
}
]
};
return config;
};